From 02079dfcb231f438634127628e1d869be96e0f5f Mon Sep 17 00:00:00 2001 From: TAKANO Mitsuhiro Date: Thu, 22 Feb 2024 23:52:06 +0900 Subject: [PATCH] RDS: fix max capacity from 2 to 4 --- db.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.tf b/db.tf index 1b77baf..f35714a 100644 --- a/db.tf +++ b/db.tf @@ -18,7 +18,7 @@ resource "aws_rds_cluster" "this" { serverlessv2_scaling_configuration { min_capacity = 1 - max_capacity = 2 + max_capacity = 4 } db_subnet_group_name = aws_db_subnet_group.this.name