Replies: 1 comment 4 replies
-
|
Hey @maonat , The deprecated You can learn more about that here. Basically, we're going to make it so that Terragrunt concurrency is more efficient, and runs happen as soon as they're no longer blocked by dependencies, instead of batching runs in groups like we are right now. You can learn more about that here. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I've implemented a workflow that is allowing us to enable "import mode" when a resource fail to create because it already exists and import it automatically if such flag is enabled.
While launching a nested directory as per below
❯ terragrunt list --tree . ├── dir1 │ ├── dns-entry │ ├── endpoint │ ╰── server ╰── dir2 ├── dns-entry ├── endpoint ╰── serverI get the following nice looking output
In order to be able to import the entire path, I must launch up to 3 times (in this case) the
apply --allbecause if it fails at the first group it will stop the execution of the apply for the second and third group.Is it possible to obtain the details of how many groups I need to execute without having to launch plan, apply, validate or anything else that would use terraform?
Using terraform for such thing would take too much time because it would require to download the module every time and I want to skip that part if possible because seems that only terragrunt is required for such thing!
I tried looking into list but cannot find a way to get the same output which states exactly how many groups we are going to execute.
Beta Was this translation helpful? Give feedback.
All reactions