-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improve error message for invalid extra atlantis dependencies (#…
…367)
- Loading branch information
1 parent
56eb7cb
commit f74a96e
Showing
4 changed files
with
55 additions
and
7 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
15 changes: 15 additions & 0 deletions
15
test_examples_errors/extra_dependency_error/child/terragrunt.hcl
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,15 @@ | ||
terraform { | ||
source = "git::[email protected]:transcend-io/terraform-aws-fargate-container?ref=v0.0.4" | ||
} | ||
|
||
locals { | ||
tg_config = read_terragrunt_config(find_in_parent_folders("config.hcl")) | ||
|
||
extra_atlantis_dependencies = [ | ||
"some_extra_dep0", | ||
"some_extra_dep1", | ||
"some_extra_dep2", | ||
"some_extra_dep3", | ||
local.tg_config | ||
] | ||
} |
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,3 @@ | ||
locals { | ||
aws_account_id = "111131111219" | ||
} |