Skip to content

Commit

Permalink
Missing IAM permissions integration role persistent environments
Browse files Browse the repository at this point in the history
  • Loading branch information
dlpzx committed Sep 11, 2024
1 parent 01c65c8 commit 93b0997
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/dataall/core/environment/cdk/environment_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,12 +581,11 @@ def create_integration_tests_role(self):
's3:CreateBucket',
's3:DeleteBucket',
's3:PutEncryptionConfiguration',
's3:List*',
's3:GetObject*',
's3:DeleteObject',
],
effect=iam.Effect.ALLOW,
resources=['arn:aws:s3:::dataalltesting*'],
resources=['arn:aws:s3:::dataalltesting*', 'arn:aws:s3:::dataalltesting*/*'],
)
)
self.test_role.add_to_policy(
Expand Down Expand Up @@ -618,6 +617,7 @@ def create_integration_tests_role(self):
'kms:TagResource',
'kms:DescribeKey',
's3:GetBucketVersioning',
's3:List*',
],
effect=iam.Effect.ALLOW,
resources=['*'],
Expand Down

0 comments on commit 93b0997

Please sign in to comment.