QuestionQ44

Core Terraform workflow

Which of the following can you do using terraform plan?

Choose two
  • A Schedule Terraform to run at a planned time in the future.
  • B View the execution plan and check if the changes match your expectations.
  • C Execute a plan in a different workspace.
  • D Save a generated execution plan to apply later.
Explanation

The terraform plan command generates an execution plan so its proposed infrastructure changes can be reviewed against expectations before applying them. With the -out=FILE option, it can also save the generated plan for later execution by terraform apply.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!