Skip to content

Commit

Permalink
Merge pull request #6514 from hotosm/fix/ssm-perms
Browse files Browse the repository at this point in the history
Fix ssm permissions to pull the AMI
  • Loading branch information
dakotabenjamin authored Jul 30, 2024
2 parents b7e4601 + 2b213fa commit 167ff31
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 167ff31

Please sign in to comment.