Skip to content

Commit

Permalink
feat(backend): Make minimum nodes for t-shirts '3' (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
nfoucha authored Mar 14, 2024
1 parent 7cdbbc6 commit ae22611
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 ae22611

Please sign in to comment.