commands.sh

terraform plan

all

Generate and show Terraform execution plans.

More info →

Examples (7)

Generate and show the execution plan in the current directory

Show a plan to destroy all remote objects that currently exist

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

Write a plan to a specific file

terraform plan -no-color > path/to/file
made by @shridhargupta | data from tldr-pages