Skip to content

Commit

Permalink
chore(backend): Make minimum nodes for t-shirts '3' (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
nfoucha committed Mar 14, 2024
1 parent b5a7d54 commit 49e02d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deployment-size.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ locals {
deployment_size = {
small = {
db = "db-n1-highmem-2",
node_count = 2,
node_count = 3,
node_instance = "n2-highmem-4"
cache = "6"
},
medium = {
db = "db-n1-highmem-4",
node_count = 2,
node_count = 3,
node_instance = "n2-highmem-4"
cache = "6"
},
large = {
db = "db-n1-highmem-8",
node_count = 2,
node_count = 3,
node_instance = "n2-highmem-8"
cache = "13"
},
Expand All @@ -32,4 +32,4 @@ locals {
cache = "26"
}
}
}
}

0 comments on commit 49e02d7

Please sign in to comment.