-
-
Notifications
You must be signed in to change notification settings - Fork 981
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extra_arguments doesn't work when downloading remote Terraform configurations #143
Comments
Ideas on possible fixes:
The third option seems like the proper solution and it should be pretty easy to implement. Anyone up for a PR? |
As a workaround you can symlink example:
|
Fix here: #168. Feedback welcome! |
Whoops, meant to hit comment, but hit close. Reopened this one until #168 is merged :) |
Fixed by #170. |
Imagine you have the following folder structure:
The
stage/terraform.tfvars
has the following contents:When you run
terragrunt apply
instage
, it will fail, because it will download the Terraform code into a temporary folder, switch to that folder, and then try to use the relative path toglobal.tfvars
. Sinceglobal.tfvars
is in the infra-live folder and not the temp folder, it won't find it.The text was updated successfully, but these errors were encountered: