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.
Question
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)- A6% (3)
- B89% (42)
- D4% (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
Community Discussion
No community discussion yet for this question.