From a39a1fce8bb3188dec2b10ea3feed2be622315bd Mon Sep 17 00:00:00 2001 From: gcagle3 <81821730+gcagle3@users.noreply.github.com> Date: Mon, 10 Jan 2022 03:42:01 -0800 Subject: [PATCH] terragrunt: add page (#7619) --- pages/common/terragrunt.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/terragrunt.md 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`