From 24171345e55a96f9ef36e2882f79e586dd692ed3 Mon Sep 17 00:00:00 2001 From: Dimo-2562 Date: Thu, 16 Oct 2025 15:58:29 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20RDS=20=EC=8A=A4=ED=86=A0=EB=A6=AC?= =?UTF-8?q?=EC=A7=80=20=ED=83=80=EC=9E=85=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- infra/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/main.tf b/infra/main.tf index 1b8fd69..669facd 100644 --- a/infra/main.tf +++ b/infra/main.tf @@ -424,7 +424,7 @@ resource "aws_db_instance" "main" { engine_version = "8.0" instance_class = var.rds_instance_class allocated_storage = 20 - storage_type = "gp3" + storage_type = "gp2" db_name = "techblog" username = var.db_username @@ -435,7 +435,7 @@ resource "aws_db_instance" "main" { skip_final_snapshot = true publicly_accessible = false - backup_retention_period = 7 + backup_retention_period = 1 enabled_cloudwatch_logs_exports = ["error", "general", "slowquery"] tags = {