mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 07:42:52 +00:00
34 lines
600 B
Plaintext
34 lines
600 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# terragrunt
|
|
|
|
> Keep your Terraform CLI arguments DRY.
|
|
> More information: <https://terragrunt.gruntwork.io>.
|
|
|
|
- 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`
|