Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions packages/cdk/nagSuppressions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,28 @@ export const nagSuppressions = (stack: Stack) => {
]
)

safeAddNagSuppression(
stack,
"/StatefulStack/Cognito/UserPoolDomain/CloudFrontDomainName/CustomResourcePolicy/Resource",
[
{
id: "AwsSolutions-IAM5",
reason: "Suppress error for wildcard permissions. This is an auto generated one for cognito domain"
}
]
)

safeAddNagSuppression(
stack,
"/StatefulStack/AWS679f53fac002430cb0da5b7982bd2287/ServiceRole/Resource",
[
{
id: "AwsSolutions-IAM4",
reason: "Suppress error for using AWS managed policy. This is an auto generated one for cognito domain"
}
]
)

safeAddNagSuppressionGroup(
stack,
[
Expand Down
Loading