Skip to content

Commit

Permalink
fix: added public read write ACL
Browse files Browse the repository at this point in the history
  • Loading branch information
kfc-manager committed Mar 23, 2024
1 parent 98a940e commit e7df443
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ resource "aws_s3_bucket_public_access_block" "main" {
restrict_public_buckets = false
}

resource "aws_s3_bucket_acl" "main" {
bucket = aws_s3_bucket.main.id
acl = "public-read-write"
}

################################
# SNS #
################################
Expand Down

0 comments on commit e7df443

Please sign in to comment.