-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathvariables.tf
93 lines (77 loc) · 1.46 KB
/
variables.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# doctl compute size list
variable "droplet_region" {
type = string
default = "nyc1"
}
variable "droplet_size" {
type = string
default = "s-1vcpu-1gb"
}
variable "droplet_size_10" {
type = string
default = "s-1vcpu-2gb"
}
variable "droplet_size_15" {
type = string
default = "s-2vcpu-2gb"
}
variable "droplet_size_20" {
type = string
default = "s-2vcpu-4gb"
}
variable "droplet_size_120" {
type = string
default = "g-8vcpu-32gb"
}
variable "droplet_size_160" {
type = string
default = "m-4vcpu-32gb"
}
variable "droplet_size_240" {
type = string
default = "g-8vcpu-32gb"
}
variable "droplet_size_320" {
type = string
default = "c-16"
}
variable "droplet_size_40" {
type = string
default = "s-4vcpu-8gb"
}
variable "droplet_os" {
type = string
default = "ubuntu-20-04-x64"
}
variable "sentry_droplet_size" {
type = string
default = "s-8vcpu-16gb"
}
variable "metrics_droplet_size" {
type = string
default = "s-1vcpu-2gb"
}
variable "mongo_droplet_size" {
type = string
default = "m-4vcpu-32gb"
}
variable "mongo_primary_droplet_size" {
type = string
default = "so-4vcpu-32gb"
}
variable "mongo_secondary_droplet_size" {
type = string
default = "m-2vcpu-16gb"
}
variable "mongo_analytics_droplet_size" {
type = string
default = "s-2vcpu-4gb"
}
variable "elasticsearch_droplet_size" {
type = string
default = "m3-2vcpu-16gb"
}
variable "redis_story_droplet_size" {
type = string
default = "m-8vcpu-64gb"
}