Skip to content

Commit

Permalink
Merge pull request #125 from JahedZ/main
Browse files Browse the repository at this point in the history
feat/autoupdates: extend IAM permissions for container execution roles
  • Loading branch information
dlpzx authored Sep 5, 2022
2 parents 7cf1177 + 5782ac4 commit 9d920f6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions deploy/stacks/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,12 @@ def create_task_role(self, envname, resource_prefix):
f'arn:aws:iam::{self.account}:role/{resource_prefix}-{envname}-ecs-tasks-role',
],
),
iam.PolicyStatement(
actions=[
'ecs:ListTasks',
],
resources=['*'],
),
iam.PolicyStatement(
actions=[
's3:GetObject',
Expand Down

0 comments on commit 9d920f6

Please sign in to comment.