Skip to content

Commit

Permalink
Fix ssm permissions to pull the AMI
Browse files Browse the repository at this point in the history
  • Loading branch information
dakotabenjamin committed Jul 30, 2024
1 parent b7e4601 commit 2b213fa
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/aws/cloudformation/tasking-manager.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,16 @@ const Resources = {
Resource: ['arn:aws:rds:*']
}]
}
}, {
PolicyName: "SSMPolicy",
PolicyDocument: {
Version: "2012-10-17",
Statement:[{
Action: ['ssm:GetParameters'],
Effect: 'Allow',
Resource: ['arn:aws:ssm:*']
}]
}
}, {
PolicyName: "CloudFormationPermissions",
PolicyDocument: {
Expand Down

0 comments on commit 2b213fa

Please sign in to comment.