Forrest logo
back to context overview

terraform-plan

List of commands for terraform-plan:

  • terraform-plan:tldr:2a9a2 terraform-plan: Generate and show the execution plan in the currently directory.
    $ terraform plan
    try on your machine
    explain this command
  • terraform-plan:tldr:31ca3 terraform-plan: Focus Terraform's attention on only a subset of resources.
    $ terraform plan -target ${resource_type-resource_name[instance index]}
    try on your machine
    explain this command
  • terraform-plan:tldr:481b3 terraform-plan: Show a plan to update the Terraform state and output values.
    $ terraform plan -refresh-only
    try on your machine
    explain this command
  • terraform-plan:tldr:5b4dd terraform-plan: Show a plan to destroy all remote objects that currently exist.
    $ terraform plan -destroy
    try on your machine
    explain this command
  • terraform-plan:tldr:5dd85 terraform-plan: Write a plan to a specific file.
    $ terraform plan -no-color > ${filename}
    try on your machine
    explain this command
  • terraform-plan:tldr:9e30f terraform-plan: Output a plan as JSON.
    $ terraform plan -json
    try on your machine
    explain this command
  • terraform-plan:tldr:c335a terraform-plan: Specify values for input variables.
    $ terraform plan -var '${name1}=${value1}' -var '${name2}=${value2}'
    try on your machine
    explain this command
back to context overview