Which of the following can you do with terraform plan? (Choose two.)
Which of the following can you do with terraform plan? (Choose two.)
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.
https://learn.hashicorp.com/tutorials/terraform/plan
C is the main purpose of plan and A can be done with plan -out=FILE flag. So A & C.
A. Save a generated execution plan to apply later C. View the execution plan and check if the changes match your expectations