-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04-variables.tf
260 lines (219 loc) · 5.88 KB
/
04-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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
variable "hcloud_token" {
type = string
description = "Hetzner API token"
sensitive = true
}
variable "htzner_dns_token" {
type = string
description = "Hetzner DNS token"
sensitive = true
}
variable "count_of_servers_behind_lb" {
description = "Number of servers behind a LB"
type = number
default = 3
}
# Network start
# variable "networks" {
# description = "The list of networks to be managed, with each list element being a tuple of (name/ip_range/subnet_bits)."
# type = list(tuple([string, string, number]))
# default = [
# ["kubernetes", "10.20.0.0/8", 1],
# ["lb-internal", "10.10.0.0/8", 8]
# ]
# validation {
# condition = can([
# for network in var.networks : regex("\\w+", network[0])
# ])
# error_message = "All networks must have a valid name specified."
# }
# validation {
# condition = can([
# for network in var.networks : regex("[[:xdigit:]]+", network[1])
# ])
# error_message = "All networks must have a valid ip_range specified."
# }
# validation {
# condition = can([
# for network in var.networks : regex("[[:digit:]]+", network[2])
# ])
# error_message = "All networks must have valid subnet_bits specified."
# }
# }
variable "subnet_start" {
description = "Which subnet offset to start at."
type = number
default = 1
}
variable "subnet_count" {
description = "The number of subnets to create."
type = number
default = 1
}
variable "labels" {
description = "The map of labels to be assigned to all managed resources."
type = map(string)
default = {
"managed" = "true"
"managed_by" = "Terraform"
}
}
# Network end
# LB and Datacenter - start
variable "dc-nuremberg-de" {
type = string
default = "nbg1-dc3"
description = "Nuremberg 1 virtual DC 3, DE"
}
variable "dc-helsinki-fi" {
type = string
default = "hel1-dc2"
description = "Helsinki 1 virtual DC 2, FI"
}
variable "dc-falkenstein-de" {
type = string
default = "fsn1-dc14"
description = "Falkenstein 1 virtual DC 14, DE"
}
variable "dc-ashburn-us" {
type = string
default = "ash-dc1"
description = "Ashburn DC1, Ashburn, VA, us-east, US"
}
variable "dc-hillsboro-us" {
type = string
default = "hil-dc1"
description = "Hillsboro virtual DC 1, us-west, US"
}
variable "lb11" {
type = string
default = "lb11"
description = "Low performance. €5.39 / mo"
}
variable "lb21" {
type = string
default = "lb21"
description = "Medium performance. €16.40 / mo"
}
variable "lb31" {
type = string
default = "lb31"
description = "High performance. €32.90 / mo"
}
variable "lb-location-hel1-fi" {
type = string
default = "hel1"
description = "Helsinki 1 virtual DC 2, FI"
}
variable "lb-location-ash-us" {
type = string
default = "ash"
description = "Ashburn virtual DC 1, US"
}
variable "lb-location-nbg1-de" {
type = string
default = "nbg1"
description = "Nuremberg DC Park 1, DE"
}
variable "lb-location-hil-us" {
type = string
default = "hil"
description = "Hillsboro, OR, US"
}
variable "lb-location-fsn1-de" {
type = string
default = "fsn1"
description = "Falkenstein DC Park 1, DE"
}
# LB and Datacenter - end
# Image - start
# curl -H "Authorization: Bearer 2I...ym" 'https://api.hetzner.cloud/v1/images'
variable "ubuntu_22_04" {
type = string
default = "ubuntu-22.04"
description = "Ubuntu 22.04"
}
variable "debian-11" {
type = string
default = "debian-11"
description = "Debian 11"
}
variable "centos-stream-9" {
type = string
default = "centos-stream-9"
description = "CentOS Stream 9"
}
# Image - end
# Servers - start
# curl -H "Authorization: Bearer 2I...ym" 'https://api.hetzner.cloud/v1/server_types'
variable "cx11" {
type = string
default = "cx11"
description = "cores: 1 memory: 2.0, disk: 20, price_monthly: 3.29"
}
variable "cx21" {
type = string
default = "cx21"
description = "cores: 2 memory: 4.0, disk: 40, price_monthly: 4.85"
}
variable "cx31" {
type = string
default = "cx31"
description = "cores: 2 memory: 8.0, disk: 80, price_monthly: 9.2"
}
variable "cx41" {
type = string
default = "cx41"
description = "cores: 4 memory: 16, disk: 160, price_monthly: 16.9"
}
variable "cx51" {
type = string
default = "cx51"
description = "cores: 8 memory: 32, disk: 240, price_monthly: 32.4"
}
variable "cpx11" {
type = string
default = "cpx11"
description = "cores: 2 memory: 2, disk: 40, price_monthly: 3.85"
}
variable "cpx21" {
type = string
default = "cpx21"
description = "cores: 3 memory: 4, disk: 80, price_monthly: 7.05"
}
variable "cpx31" {
type = string
default = "cpx31"
description = "cores: 4 memory: 8, disk: 160, price_monthly: 13.1"
}
variable "cpx41" {
type = string
default = "cpx41"
description = "cores: 8 memory: 16, disk: 240, price_monthly: 24.7"
}
variable "cpx51" {
type = string
default = "cpx51"
description = "cores: 16 memory: 32, disk: 360, price_monthly: 54.4"
}
variable "ccx12" {
type = string
default = "ccx12"
description = "CCX12 Dedicated CPU. cores: 16 memory: 32, disk: 360, price_monthly: 54.4"
}
variable "ccx22" {
type = string
default = "ccx22"
description = "CCX22 Dedicated CPU. cores: 4 memory: 16, disk: 160, price_monthly: 37.9"
}
variable "ccx32" {
type = string
default = "ccx32"
description = "ccx32 Dedicated CPU. cores: 8 memory: 32, disk: 240, price_monthly: 76.4"
}
variable "ccx42" {
type = string
default = "ccx42"
description = "ccx42 Dedicated CPU. cores: 16 memory: 64, disk: 360, price_monthly: 153.4"
}
# Servers - end