Skip to content

Commit

Permalink
bump staging RDS instance to T3 Small (#4081)
Browse files Browse the repository at this point in the history
  • Loading branch information
freemvmt authored Dec 13, 2024
1 parent 3c0358f commit 8607b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const db = new aws.rds.Instance("app", {
// $ aws rds describe-db-engine-versions --default-only --engine postgres
engineVersion: "12.17",
// Available instance types: https://aws.amazon.com/rds/instance-types/
instanceClass: env === "production" ? "db.t3.medium" : "db.t3.micro",
instanceClass: env === "production" ? "db.t3.medium" : "db.t3.small",
allocatedStorage: env === "production" ? 100 : 20,
allowMajorVersionUpgrade: true,
dbSubnetGroupName: networking.requireOutput("subnetId"),
Expand Down

0 comments on commit 8607b97

Please sign in to comment.