Exam Terraform Associate All QuestionsBrowse all questions from this exam
Question 189

Which of the following can you do with terraform plan? (Choose two.)

    Correct Answer: A, C

    Terraform plan can be used to save a generated execution plan with the -out=FILE flag, which allows you to apply this saved plan later. Additionally, it enables you to view the execution plan and verify that the changes match your expectations before applying them. These functionalities make options A and C the correct choices.

Discussion
depal_dhirOptions: AC

https://learn.hashicorp.com/tutorials/terraform/plan

G4ExamsOptions: AC

C is the main purpose of plan and A can be done with plan -out=FILE flag. So A & C.

campsOptions: AC

A. Save a generated execution plan to apply later C. View the execution plan and check if the changes match your expectations