You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there are dependencies across auto-generated terragrunt projects, e.g. apps depend on VPC, then Digger does not run them in the correct order. The order of execution appears to be random or alphabetical. Likely a bug in terragrunt-atlantis-config lib that is used under the hood.
Workaround: use explicit project definition with terragrunt: true and depends_on: ["vpc", "rds"] options. Not ideal as it leads to duplication of dependency declarations.
The text was updated successfully, but these errors were encountered:
Then try to resolve some (nonalphabetical) projects and note that it will not resolve them according to how terragrunt specifies them in dependency DAG
We had this reported today also, for backendless mode I think the only solutions I could think of was to all the ordering of impacted projects in digger.yml or enable a way to do run all in Terragrunt so the dependency map is built based on the dependencies block
If there are dependencies across auto-generated terragrunt projects, e.g. apps depend on VPC, then Digger does not run them in the correct order. The order of execution appears to be random or alphabetical. Likely a bug in terragrunt-atlantis-config lib that is used under the hood.
Workaround: use explicit project definition with
terragrunt: true
anddepends_on: ["vpc", "rds"]
options. Not ideal as it leads to duplication of dependency declarations.The text was updated successfully, but these errors were encountered: