Skip to content

Commit

Permalink
Merge pull request #413 from umccr/srm-lambda-role-sqs-exec-policy
Browse files Browse the repository at this point in the history
Added AWSLambdaSQSQueueExecutionRole policy to SRM Lambda role
  • Loading branch information
victorskl authored Jul 15, 2024
2 parents ebbbba9 + 5e8867b commit 3e9439e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ export class SequenceRunManagerStack extends Stack {
this.lambdaRole.addManagedPolicy(
ManagedPolicy.fromAwsManagedPolicyName('service-role/AWSLambdaVPCAccessExecutionRole')
);
this.lambdaRole.addManagedPolicy(
ManagedPolicy.fromAwsManagedPolicyName('service-role/AWSLambdaSQSQueueExecutionRole')
);
this.lambdaRole.addManagedPolicy(
ManagedPolicy.fromAwsManagedPolicyName('AmazonSSMReadOnlyAccess')
);
Expand Down

0 comments on commit 3e9439e

Please sign in to comment.