Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

restrict public access #154

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions modules/products/static-site/storage.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ resource "aws_s3_bucket_website_configuration" "static_site_config" {
resource "aws_s3_bucket_public_access_block" "static_site_acl" {
bucket = aws_s3_bucket.static_site.id

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

resource "aws_s3_bucket_versioning" "static_site_versioning" {
Expand Down