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 43cbf63 commit bba70d6Copy full SHA for bba70d6
packages/cdk/nagSuppressions.ts
@@ -45,6 +45,22 @@ export const nagSuppressions = (stack: Stack) => {
45
safeAddNagSuppression(
46
stack,
47
"/EpsAssistMeStack/Apis/EpsAssistApiGateway/ApiGateway/Default/slack/events/POST/Resource",
48
+ [
49
+ {
50
+ id: "AwsSolutions-APIG4",
51
+ reason: "Slack event endpoint is intentionally unauthenticated."
52
+ },
53
54
+ id: "AwsSolutions-COG4",
55
+ reason: "Cognito not required for this public endpoint."
56
+ }
57
+ ]
58
+ )
59
+
60
+ // Suppress unauthenticated API route warnings
61
+ safeAddNagSuppression(
62
+ stack,
63
+ "/EpsAssistMeStack/Apis/EpsAssistApiGateway/ApiGateway/Default/slack/commands/POST/Resource",
64
[
65
{
66
id: "AwsSolutions-APIG4",
0 commit comments