HashiCorp Certified: Terraform Associate — Question 334
terraform apply will fail if you have not am terraform plan first to update the plan output.
Answer options
- A. True
- B. False
Correct answer: B
Explanation
The statement is incorrect because terraform apply can be executed without a prior terraform plan, as it will use the latest state of the infrastructure. However, running terraform plan first is recommended to review changes before applying them.