1. An operator is reviewing a failed HCP Terraform run. The run log shows: 'Policy check soft failed.' The operator does not have the 'Manage Policy Overrides' permission. What will happen to this run?
- A. The run is automatically discarded and must be re-triggered from scratch.
- B. The run proceeds to apply automatically because soft-mandatory failures are non-blocking.
- C. The run is paused at the policy check stage and requires a user with the 'Manage Policy Overrides' permission to override it before the apply can proceed.✓ Correct
- D. The run proceeds to apply only if all Terraform plan changes are marked as 'no-op'.
Explanation
Option C is correct. A soft-mandatory Sentinel policy failure pauses the run and requires a user with the 'Manage Policy Overrides' permission to explicitly override the failure before the apply step is unlocked. The current operator cannot unblock it themselves due to lacking that permission. Option A is wrong because the run is not discarded—it stays in a paused/needs-override state. Option B is wrong because soft-mandatory failures DO block the run; only advisory failures are non-blocking. Option D is wrong because the apply gating is based on the override permission, not on whether the plan produces changes.