Skip to content

Commit

Permalink
Allow (ignored) standard options for terraform clean (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuru committed Oct 30, 2020
1 parent adf68d9 commit c261f52
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modules/terraform/terraform-core.variant
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ job "terraform clean" {
type = string
}

option "environment" {
default = ""
type = string
description = "(ignored, provided for compatibility with other commands)"
short = "e"
}

option "stage" {
type = string
description = "(ignored, provided for compatibility with other commands)"
short = "s"
}

step "clean shell" {
run "terraform shell" {
project = param.project
Expand Down

0 comments on commit c261f52

Please sign in to comment.