mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-09 17:55:45 +02:00
terragrunt: add page (#7619)
This commit is contained in:
parent
5f24ccbc17
commit
a39a1fce8b
1 changed files with 28 additions and 0 deletions
28
pages/common/terragrunt.md
Normal file
28
pages/common/terragrunt.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# 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`
|
Loading…
Add table
Reference in a new issue