Skip to content

Commit e0bb2a1

Browse files
committed
Add a confirmation step to pipeline for permissions broadening
1 parent 2079e61 commit e0bb2a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloud/lib/pipeline-stack.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
CodeBuildStep,
77
CodePipeline,
88
CodePipelineSource,
9+
ConfirmPermissionsBroadening,
910
ShellStep,
1011
Step,
1112
} from 'aws-cdk-lib/pipelines';
@@ -95,8 +96,7 @@ export class PipelineStack extends Stack {
9596

9697
// Pre-deployment quality checks
9798
deployment.addPre(
98-
// TODO Add a ConfirmPermissionsBroadening step:
99-
// new ConfirmPermissionsBroadening('Check Permissions', { stage: appStage }),
99+
new ConfirmPermissionsBroadening('Check Permissions', { stage: appStage }),
100100
new CodeBuildStep('API-CodeChecks', {
101101
input: sourceCode,
102102
commands: [

0 commit comments

Comments
 (0)