From 93a23576ca2f53c78154a402c6bcda9ef9bffdc9 Mon Sep 17 00:00:00 2001 From: psyashes <43512814+psyashes@users.noreply.github.com> Date: Sun, 14 Nov 2021 02:58:34 +0900 Subject: [PATCH] terraform-plan: add page (#7406) --- pages/common/terraform-plan.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/terraform-plan.md diff --git a/pages/common/terraform-plan.md b/pages/common/terraform-plan.md new file mode 100644 index 0000000000..8dc394388a --- /dev/null +++ b/pages/common/terraform-plan.md @@ -0,0 +1,32 @@ +# terraform plan + +> Generate and show Terraform execution plans. +> More information: . + +- Generate and show the execution plan in the currently directory: + +`terraform plan` + +- Show a plan to destroy all remote objects that currently exist: + +`terraform plan -destroy` + +- Show a plan to update the Terraform state and output values: + +`terraform plan -refresh-only` + +- Specify values for input variables: + +`terraform plan -var '{{name1}}={{value1}}' -var '{{name2}}={{value2}}'` + +- Focus Terraform's attention on only a subset of resources: + +`terraform plan -target {{resource_type.resource_name[instance index]}}` + +- Output a plan as JSON: + +`terraform plan -json` + +- Write a plan to a specific file: + +`terraform plan -no-color > {{path/to/file}}`