Replies: 1 comment 1 reply
-
@cveld Have you already looked through the Terragrunt docs? https://terragrunt.gruntwork.io/docs/ |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With terraform we use a multi-stage pipeline that first establishes a terraform plan, and after review, kicks off terraform apply.
It is fairly easy to transition a terraform plan to a fresh apply stage, by copying the lock file and the plan file, run
init
and thenapply
.How can I do the same with terragrunt?
Additionally, this multi-stage approach should ideally be taking place per group of modules.
E.g.
Group 1
Group 2
Group 3
The stages should be doing the following:
Is this possible?
Tracked in ticket #110638
Beta Was this translation helpful? Give feedback.
All reactions