From ce54e2da13d9d9309f2ca95046e774b2c4c6d047 Mon Sep 17 00:00:00 2001 From: 2ghrms Date: Fri, 26 Dec 2025 17:01:06 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20S3=20=EC=84=A4=EC=A0=95=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- terraform/env/prod/storage.tf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/terraform/env/prod/storage.tf b/terraform/env/prod/storage.tf index d42b352..9078227 100644 --- a/terraform/env/prod/storage.tf +++ b/terraform/env/prod/storage.tf @@ -5,9 +5,8 @@ module "s3" { environment = local.environment purpose = "storage" - # Public read access (GET only) - AWS SDK로 업로드/삭제, 외부에서 읽기만 허용 - enable_public_read = true - enable_block_public_access = false # public read를 위해 비활성화 + enable_public_read = false + enable_block_public_access = true enable_versioning = true enable_sse = true sse_algorithm = "AES256"