Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fdervisi committed Sep 20, 2024
1 parent 7d4e11a commit a720bc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrastructure/s3.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ resource "aws_s3_bucket" "default" {

resource "aws_s3_bucket_public_access_block" "default" {
bucket = aws_s3_bucket.default.id
block_public_acls = true
block_public_policy = true
block_public_acls = false
block_public_policy = false
ignore_public_acls = true
restrict_public_buckets = true
}
Expand Down

0 comments on commit a720bc1

Please sign in to comment.