Before changing campus IOS XE routes with Terraform, change control wants a preview of creates, updates, and destroys. Which workflow order satisfies that review?
Select an answer to reveal the explanation.
Short Explanation
Plan is the dress rehearsal; apply is opening night. When reviewers need the delta first, skip neither step—and do not borrow Ansible’s check mode as a Terraform synonym.
Full Explanation
Official Terraform workflow for 5.3.b is plan (preview create/change/destroy) then apply. Jumping straight to apply when the scenario requires a review skips the constructed workflow. Ansible check mode is the sibling concept under 5.3.a, not a substitute for terraform plan. Blunt destroy-then-recreate also skips the intended plan-then-apply path.