Skip to content

Commit

Permalink
Merge pull request #529 from umccr/fix/pipeline-cross-account-default…
Browse files Browse the repository at this point in the history
…-access

Allow retrieval of object tags for default cross account access
  • Loading branch information
reisingerf authored Jan 17, 2025
2 parents 4c236b9 + 2a01e7d commit 20d51ea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions terraform/stacks/unimelb/data_archive/byob_ica_v2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ data "aws_iam_policy_document" "production_data" {
actions = sort([
"s3:List*",
"s3:GetObject",
"s3:GetObjectTagging",
"s3:GetBucketLocation",
])
resources = sort([
Expand Down Expand Up @@ -398,6 +399,8 @@ data "aws_iam_policy_document" "staging_data" {
actions = sort([
"s3:List*",
"s3:GetBucketLocation",
"s3:GetObject",
"s3:GetObjectTagging"
])
resources = sort([
aws_s3_bucket.staging_data.arn,
Expand Down Expand Up @@ -641,6 +644,7 @@ data "aws_iam_policy_document" "development_data" {
"s3:List*",
"s3:GetBucketLocation",
"s3:GetObject",
"s3:GetObjectTagging",
"s3:GetObjectAttributes"
])
resources = sort([
Expand Down

0 comments on commit 20d51ea

Please sign in to comment.