Skip to content

Commit

Permalink
fix: removed public access block
Browse files Browse the repository at this point in the history
  • Loading branch information
kfc-manager committed Mar 23, 2024
1 parent 8e506cc commit 98a940e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ resource "aws_s3_bucket_ownership_controls" "main" {
resource "aws_s3_bucket_public_access_block" "main" {
bucket = aws_s3_bucket.main.id

block_public_acls = true
block_public_policy = true
ignore_public_acls = true
block_public_acls = false
block_public_policy = false
ignore_public_acls = false
restrict_public_buckets = false
}

Expand Down

0 comments on commit 98a940e

Please sign in to comment.