diff --git a/pages/common/terragrunt.md b/pages/common/terragrunt.md new file mode 100644 index 0000000000..da46af7292 --- /dev/null +++ b/pages/common/terragrunt.md @@ -0,0 +1,28 @@ +# terragrunt + +> Keep your Terraform CLI arguments DRY. +> More information: . + +- 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`