@@ -276,6 +276,13 @@ export class SolutionDeployStack extends cdk.Stack {
276276 } ;
277277 }
278278
279+ cdk_nag . NagSuppressions . addResourceSuppressions ( checkSSMDocState , [
280+ {
281+ id : "AwsSolutions-L1" ,
282+ reason : "Will upgrade in next release to prioritize patch" ,
283+ } ,
284+ ] ) ;
285+
279286 /**
280287 * @description getApprovalRequirement - determine whether manual approval is required
281288 * @type {lambda.Function }
@@ -325,6 +332,13 @@ export class SolutionDeployStack extends cdk.Stack {
325332 } ;
326333 }
327334
335+ cdk_nag . NagSuppressions . addResourceSuppressions ( getApprovalRequirement , [
336+ {
337+ id : "AwsSolutions-L1" ,
338+ reason : "Will upgrade in next release to prioritize patch" ,
339+ } ,
340+ ] ) ;
341+
328342 /**
329343 * @description execAutomation - initiate an SSM automation document in a target account
330344 * @type {lambda.Function }
@@ -373,6 +387,13 @@ export class SolutionDeployStack extends cdk.Stack {
373387 } ;
374388 }
375389
390+ cdk_nag . NagSuppressions . addResourceSuppressions ( execAutomation , [
391+ {
392+ id : "AwsSolutions-L1" ,
393+ reason : "Will upgrade in next release to prioritize patch" ,
394+ } ,
395+ ] ) ;
396+
376397 /**
377398 * @description monitorSSMExecState - get the status of an ssm execution
378399 * @type {lambda.Function }
@@ -421,6 +442,13 @@ export class SolutionDeployStack extends cdk.Stack {
421442 } ;
422443 }
423444
445+ cdk_nag . NagSuppressions . addResourceSuppressions ( monitorSSMExecState , [
446+ {
447+ id : "AwsSolutions-L1" ,
448+ reason : "Will upgrade in next release to prioritize patch" ,
449+ } ,
450+ ] ) ;
451+
424452 /**
425453 * @description Policy for role used by common Orchestrator notification lambda
426454 * @type {Policy }
@@ -555,6 +583,13 @@ export class SolutionDeployStack extends cdk.Stack {
555583 } ;
556584 }
557585
586+ cdk_nag . NagSuppressions . addResourceSuppressions ( sendNotifications , [
587+ {
588+ id : "AwsSolutions-L1" ,
589+ reason : "Will upgrade in next release to prioritize patch" ,
590+ } ,
591+ ] ) ;
592+
558593 //-------------------------------------------------------------------------
559594 // Custom Lambda Policy
560595 //
@@ -669,6 +704,13 @@ export class SolutionDeployStack extends cdk.Stack {
669704 } ,
670705 } ;
671706
707+ cdk_nag . NagSuppressions . addResourceSuppressions ( createCustomAction , [
708+ {
709+ id : "AwsSolutions-L1" ,
710+ reason : "Will upgrade in next release to prioritize patch" ,
711+ } ,
712+ ] ) ;
713+
672714 const orchestrator = new OrchestratorConstruct ( this , 'orchestrator' , {
673715 roleArn : orchestratorRole . roleArn ,
674716 ssmDocStateLambda : checkSSMDocState . functionArn ,
0 commit comments