From b3c87f12bb8fd389c90333a6a858447922753525 Mon Sep 17 00:00:00 2001 From: Tim Schultz Date: Wed, 5 Jul 2023 11:36:22 -0600 Subject: [PATCH] fix(infra): update replica db instance type (#301) --- infra/prod/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/prod/index.ts b/infra/prod/index.ts index 84a0d475e..122fd646d 100644 --- a/infra/prod/index.ts +++ b/infra/prod/index.ts @@ -99,7 +99,7 @@ const readreplica0 = new aws.rds.Instance( { allocatedStorage: 20, maxAllocatedStorage: 100, - instanceClass: "db.t3.medium", + instanceClass: "db.t3.xlarge", skipFinalSnapshot: true, vpcSecurityGroupIds: [db_secgrp.id], deletionProtection: true,