Skip to content

Commit

Permalink
Add DescribeStacks Perm for parent stack
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Mar 11, 2024
1 parent a87cbbf commit c032f3b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cloudformation/lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,14 @@ export default {
cf.join(['arn:', cf.partition, ':secretsmanager:', cf.region, ':', cf.accountId, ':secret:', cf.stackName, '/*'])
]
},{ // ------------ Permissions Required to stand up lambda tasks ------------
Effect: 'Allow',
Action: [
'cloudformation:DescribeStacks'
],
Resource: [
cf.join(['arn:', cf.partition, ':cloudformation:', cf.region, ':', cf.accountId, ':stack/', cf.stackName])
]
},{
Effect: 'Allow',
Action: [
'iam:PassRole'
Expand Down

0 comments on commit c032f3b

Please sign in to comment.