2025-03-14 21:59:59 -06:00
|
|
|
# terragrunt
|
|
|
|
|
|
|
|
|
|
> Keep your Terraform CLI arguments DRY.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://terragrunt.gruntwork.io/docs/reference/cli/>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Generate and show an execution plan:
|
|
|
|
|
|
|
|
|
|
`terragrunt plan`
|
|
|
|
|
|
|
|
|
|
- Build or change infrastructure:
|
|
|
|
|
|
|
|
|
|
`terragrunt apply`
|
|
|
|
|
|
|
|
|
|
- Show current deployment (from state):
|
|
|
|
|
|
|
|
|
|
`terragrunt show`
|
|
|
|
|
|
|
|
|
|
- Show module output values:
|
|
|
|
|
|
|
|
|
|
`terragrunt output`
|
|
|
|
|
|
|
|
|
|
- Destroy Terraform-managed infrastructure:
|
|
|
|
|
|
|
|
|
|
`terragrunt destroy`
|
|
|
|
|
|
|
|
|
|
- Build or change infrastructure from a tree of Terragrunt modules (stack):
|
|
|
|
|
|
|
|
|
|
`terragrunt run-all apply`
|