Skip to content

Commit

Permalink
🔧 Add ACL permissions to Destination Bucket (#6060)
Browse files Browse the repository at this point in the history
* 🔧 Add ACL permissions to Destination Bucket

* Update Lambda version
  • Loading branch information
Gary-H9 authored May 13, 2024
1 parent fd489a6 commit c207aec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ locals {

/* Image Versions */
scan_image_version = "0.0.5"
transfer_image_version = "0.0.9"
transfer_image_version = "0.0.10"
notify_image_version = "0.0.11"

/* Target Buckets */
Expand Down Expand Up @@ -45,7 +45,7 @@ locals {

/* Image Versions */
scan_image_version = "0.0.5"
transfer_image_version = "0.0.9"
transfer_image_version = "0.0.10"
notify_image_version = "0.0.11"

/* Target Buckets */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,9 @@ module "transfer_lambda" {
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject",
"s3:PutObjectTagging"
"s3:PutObjectTagging",
"s3:GetObjectAcl",
"s3:PutObjectAcl"
]
resources = formatlist("arn:aws:s3:::%s/*", local.environment_configuration.target_buckets)
},
Expand Down

0 comments on commit c207aec

Please sign in to comment.