Skip to content

Commit 607ecc0

Browse files
committed
Suppress permissions issue
Signed-off-by: Connor Avery <[email protected]>
1 parent 0c137ce commit 607ecc0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

packages/cdk/nagSuppressions.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,17 @@ export const nagSuppressions = (stack: Stack) => {
124124
]
125125
)
126126

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+
127138
}
128139

129140
const safeAddNagSuppression = (stack: Stack, path: string, suppressions: Array<NagPackSuppression>) => {

0 commit comments

Comments
 (0)