nerdexam
HashiCorp

TERRAFORM-ASSOCIATE-004 · Question #238

Which of the following can you do with terraform plan? (Pick 2 correct responses)

The correct answer is B. View the execution plan and check if the changes match your expectations. C. Save a generated execution plan to apply later.. View the execution plan: Correct -- terraform plan shows what Terraform intends to do (create, update, or destroy). Save a generated execution plan: Correct -- using terraform plan -out=planfile lets you save the plan to apply later with terraform apply planfile.

Submitted by viktor_hu· Apr 18, 2026Use Terraform CLI

Question

Which of the following can you do with terraform plan? (Pick 2 correct responses)

Options

  • ASchedule Terraform to run at a planned time in the future.
  • BView the execution plan and check if the changes match your expectations.
  • CSave a generated execution plan to apply later.
  • DExecute a plan in a different workspace.

How the community answered

(47 responses)
  • A
    6% (3)
  • B
    89% (42)
  • D
    4% (2)

Explanation

View the execution plan: Correct -- terraform plan shows what Terraform intends to do (create, update, or destroy). Save a generated execution plan: Correct -- using terraform plan -out=planfile lets you save the plan to apply later with terraform apply planfile.

Topics

#terraform plan#CLI commands#execution plan#preview changes

Community Discussion

No community discussion yet for this question.

Full TERRAFORM-ASSOCIATE-004 Practice