We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9923b40 commit 79bffddCopy full SHA for 79bffdd
packages/cdk/nagSuppressions.ts
@@ -280,6 +280,17 @@ export const nagSuppressions = (stack: Stack) => {
280
]
281
)
282
283
+ safeAddNagSuppression(
284
+ stack,
285
+ "/EpsAssistMeStack/RegressionTestPolicy/Resource",
286
+ [
287
+ {
288
+ id: "AwsSolutions-IAM5",
289
+ reason: "Auto-generated CDK Provider role requires wildcard permissions for cloudformation stack listing."
290
+ }
291
+ ]
292
+ )
293
+
294
}
295
296
const safeAddNagSuppression = (stack: Stack, path: string, suppressions: Array<NagPackSuppression>) => {
0 commit comments