-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdeployment-size.tf
40 lines (40 loc) · 995 Bytes
/
deployment-size.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
locals {
# Specifications for t-shirt sized deployments
deployment_size = {
small = {
db = "db-n1-highmem-2",
min_node_count = 2,
max_node_count = 3,
node_instance = "n2-highmem-4"
cache = "6"
},
medium = {
db = "db-n1-highmem-4",
min_node_count = 2,
max_node_count = 4,
node_instance = "n2-highmem-4"
cache = "6"
},
large = {
db = "db-n1-highmem-8",
min_node_count = 3,
max_node_count = 4,
node_instance = "n2-highmem-8"
cache = "13"
},
xlarge = {
db = "db-n1-highmem-16",
min_node_count = 3,
max_node_count = 5,
node_instance = "n2-highmem-8"
cache = "13"
},
xxlarge = {
db = "db-n1-highmem-32",
min_node_count = 3,
max_node_count = 6,
node_instance = "n2-highmem-16"
cache = "26"
}
}
}