Skip to content

Commit 4d6810e

Browse files
authored
deploy: RDS 스토리지 타입 변경 (#24)
1 parent da74bfa commit 4d6810e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

infra/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ resource "aws_db_instance" "main" {
424424
engine_version = "8.0"
425425
instance_class = var.rds_instance_class
426426
allocated_storage = 20
427-
storage_type = "gp3"
427+
storage_type = "gp2"
428428

429429
db_name = "techblog"
430430
username = var.db_username
@@ -435,7 +435,7 @@ resource "aws_db_instance" "main" {
435435

436436
skip_final_snapshot = true
437437
publicly_accessible = false
438-
backup_retention_period = 7
438+
backup_retention_period = 1
439439
enabled_cloudwatch_logs_exports = ["error", "general", "slowquery"]
440440

441441
tags = {

0 commit comments

Comments
 (0)