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 0c137ce commit 607ecc0Copy full SHA for 607ecc0
packages/cdk/nagSuppressions.ts
@@ -124,6 +124,17 @@ export const nagSuppressions = (stack: Stack) => {
124
]
125
)
126
127
+ safeAddNagSuppression(
128
+ stack,
129
+ "/VpcResourcesStack/apiGatewayEndpoint-tags/CustomResourcePolicy/Resource",
130
+ [
131
+ {
132
+ id: "AwsSolutions-IAM5",
133
+ reason: "Suppress error for wildcard permissions. This is fine here"
134
+ }
135
+ ]
136
+ )
137
+
138
}
139
140
const safeAddNagSuppression = (stack: Stack, path: string, suppressions: Array<NagPackSuppression>) => {
0 commit comments