Skip to content

Commit 6e1abf6

Browse files
chore: makes perms less restrictive
1 parent 79bffdd commit 6e1abf6

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

packages/cdk/stacks/EpsAssistMeStack.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,10 @@ export class EpsAssistMeStack extends Stack {
184184
]
185185
}),
186186
new PolicyStatement({
187-
actions: ["cloudformation:DescribeStacks"],
188-
resources: [this.stackId]
189-
}),
190-
new PolicyStatement({
191-
actions: ["cloudformation:ListStacks"],
187+
actions: [
188+
"cloudformation:ListStacks",
189+
"cloudformation:DescribeStacks"
190+
],
192191
resources: ["*"]
193192
})
194193
]

0 commit comments

Comments
 (0)