-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Nested Terragrunt configuration with atlantis.yaml #279
Comments
Yes for now you'll need every terragrunt project to be defined in the yaml: version: 2
projects:
- dir: live/dev
workflow: terragrunt
- dir: live/dev/application
workflow: terragrunt
...
workflows:
terragrunt:
plan:
steps:
- run: terragrunt plan -no-color -out $PLANFILE
apply:
steps:
- run: terragrunt apply -no-color $PLANFILE |
thanks for confirming. I just read through #244 again and realise that it already answers this. Apologies for that! |
Sorry for opening the issue again but I was wondering if there are any plans to enable wildcard support for terragrunt ? Just like OP we have a whole repository of Ideally I'd like something like:
Otherwise every time we add a new directory, we'd have to edit the |
Would setting a new default workflow server-side work? https://www.runatlantis.io/docs/server-side-repo-config.html#change-the-default-atlantis-workflow |
Yeah setting terragrunt as As for the my original issue I have,
It triggers a plan but the problem is it only run the My server side config right now is:
|
We have a new setup of atlantis and I am trying to understand the yaml configuration required for terragrunt.
Given the example in the terragrunt-infrastructure-live-example
As far as I can see the yaml config looks like the expected structure is something similar to
but we have a more complex structure for multi account which follows something like
The use case would likely be solved with #244 but in the current implementation would the yaml expect each path to have its own project?
The text was updated successfully, but these errors were encountered: