Skip to content

Commit

Permalink
chore(backend): Make minimum nodes for t-shirts '3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigel Foucha committed Mar 7, 2024
1 parent 258fb12 commit e9d50d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deployment-size.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ locals {
deployment_size = {
small = {
db = "db.r6g.large",
node_count = 2,
node_count = 3,
node_instance = "r6i.xlarge"
cache = "cache.m6g.large"
},
medium = {
db = "db.r6g.xlarge",
node_count = 2,
node_count = 3,
node_instance = "r6i.xlarge"
cache = "cache.m6g.large"
},
large = {
db = "db.r6g.2xlarge",
node_count = 2,
node_count = 3,
node_instance = "r6i.2xlarge"
cache = "cache.m6g.xlarge"
},
Expand Down

0 comments on commit e9d50d9

Please sign in to comment.