Before applying infrastructure changes for a library catalog service to the test account, CI should show what will change. Which CDK practice supports that review?
Select an answer to reveal the explanation.
Short Explanation
Diff is the highlighter on the renovation contract—see the redlines before swinging the hammer. CI cdk diff against test shows the plan. Deploying blind and diffing afterward is backwards.
Full Explanation
CDK tooling in CI can synthesize and diff stacks against a target environment so intended infrastructure changes are visible before deploy. That review step is part of automated checks around deployment testing. Deploying first, suppressing diffs, or abandoning CDK for console clicks removes that preview.