nerdexam
HashiCorp

TERRAFORM-ASSOCIATE-003 · 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.

Navigate Terraform Workflow

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

(28 responses)
  • A
    7% (2)
  • B
    71% (20)
  • D
    21% (6)

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#execution plan#plan file#saved plan

Community Discussion

No community discussion yet for this question.

Full TERRAFORM-ASSOCIATE-003 Practice