-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow multiple paths with --filter flag (#328)
Update the type of the --filter flag so multiple paths or glob expressions can be passed as a comma-separated list. Co-authored-by: Ryan Sinnet <[email protected]>
- Loading branch information
1 parent
cfa8c72
commit 5c54b0b
Showing
3 changed files
with
101 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
automerge: false | ||
parallel_apply: true | ||
parallel_plan: true | ||
projects: | ||
- autoplan: | ||
enabled: false | ||
when_modified: | ||
- "*.hcl" | ||
- "*.tf*" | ||
- ../../../../terragrunt.hcl | ||
- ../../../../_envcommon/mysql.hcl | ||
- ../../../account.hcl | ||
- ../../region.hcl | ||
- ../env.hcl | ||
dir: non-prod/us-east-1/qa/mysql | ||
- autoplan: | ||
enabled: false | ||
when_modified: | ||
- "*.hcl" | ||
- "*.tf*" | ||
- ../../../../terragrunt.hcl | ||
- ../../../../_envcommon/webserver-cluster.hcl | ||
- ../../../account.hcl | ||
- ../../region.hcl | ||
- ../env.hcl | ||
dir: non-prod/us-east-1/qa/webserver-cluster | ||
- autoplan: | ||
enabled: false | ||
when_modified: | ||
- "*.hcl" | ||
- "*.tf*" | ||
- ../../../../terragrunt.hcl | ||
- ../../../../_envcommon/mysql.hcl | ||
- ../../../account.hcl | ||
- ../../region.hcl | ||
- ../env.hcl | ||
dir: non-prod/us-east-1/stage/mysql | ||
- autoplan: | ||
enabled: false | ||
when_modified: | ||
- "*.hcl" | ||
- "*.tf*" | ||
- ../../../../terragrunt.hcl | ||
- ../../../../_envcommon/webserver-cluster.hcl | ||
- ../../../account.hcl | ||
- ../../region.hcl | ||
- ../env.hcl | ||
dir: non-prod/us-east-1/stage/webserver-cluster | ||
- autoplan: | ||
enabled: false | ||
when_modified: | ||
- "*.hcl" | ||
- "*.tf*" | ||
- ../../../../terragrunt.hcl | ||
- ../../../../_envcommon/mysql.hcl | ||
- ../../../account.hcl | ||
- ../../region.hcl | ||
- ../env.hcl | ||
dir: prod/us-east-1/prod/mysql | ||
- autoplan: | ||
enabled: false | ||
when_modified: | ||
- "*.hcl" | ||
- "*.tf*" | ||
- ../../../../terragrunt.hcl | ||
- ../../../../_envcommon/webserver-cluster.hcl | ||
- ../../../account.hcl | ||
- ../../region.hcl | ||
- ../env.hcl | ||
dir: prod/us-east-1/prod/webserver-cluster | ||
version: 3 |