From 49223f989fa9ba14c6d3b5fa6a43ef8ac8306021 Mon Sep 17 00:00:00 2001 From: Andrea Cappelletti Date: Fri, 26 Jun 2026 14:04:38 -0400 Subject: [PATCH] Switch to r6i.2xlarge + db.r6g.xlarge --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index e096db7..20c8090 100644 --- a/main.tf +++ b/main.tf @@ -10,7 +10,7 @@ resource "aws_instance" "web" { resource "aws_db_instance" "main" { engine = "postgres" - instance_class = "db.r5.large" + instance_class = "db.r6g.xlarge" multi_az = true allocated_storage = 100 }