terragrunt: add page (#7619)

feature/windows-fix-syntax-2
gcagle3 2022-01-10 03:42:01 -08:00 committed by GitHub
parent 5f24ccbc17
commit a39a1fce8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

View 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`