-
Notifications
You must be signed in to change notification settings - Fork 104
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
bug: execution_order_group does not print 0 values when active #319
Comments
Sorry, I'm a new maintainer - what is |
@Almenon - it's a parameter which can be set in the repo/project config to determine what order projects are run in: https://www.runatlantis.io/docs/repo-level-atlantis-yaml.html#order-of-planning-applying |
@pseudomorph Any idea how to use execution_order_group functionally here ? Looks like its not possible to setup this param as local on module level ( hcl file ) .. so Im not sure how we can use this inside terragrunt-atlantis-config tool. |
#237 Details when this was introduced. All this Issue is for is to ensure that projects which are the first in the dependency line, or which fall outside of a dependency chain, are marked with an execution_order_group of 0, when the flag is set. |
0 is considered an empty value for the purposes of omitempty here: https://github.com/transcend-io/terragrunt-atlantis-config/blob/master/cmd/config.go#L57
This means that even when --execution-order-groups is set, the execution group 0, is not placed into config.
This should be addressable by using a pointer.
The text was updated successfully, but these errors were encountered: