-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03-servers.tf
288 lines (278 loc) · 9.31 KB
/
03-servers.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
module "hetzner_cloud" {
source = "./modules/hetzner-hcloud"
# Variables for servers behind a Load balancer - start
servers_behind_lb_count = 2
servers_behind_lb_name = "php-fpm"
servers_behind_lb_image = var.ubuntu_22_04
servers_behind_lb_server_type = var.cx11
servers_behind_lb_location = var.lb-location-nbg1-de # should be the same as in Load Balancer var.lb_location below
servers_behind_lb_backups = false
servers_behind_lb_keep_disk = true # Keep the size of the disk if increasing a server size. It allows one to decrease back.
servers_behind_lb_placement_group_name = "hosting" # Choose the desired name from previously created placement groups.
servers_behind_lb_network_subnet_name = "hosting" # Choose the desired name from previously created subnets.
servers_behind_lb_tz = "Europe/Kiev"
servers_behind_lb_ipv4_enabled = true
servers_behind_lb_ipv6_enabled = false
servers_behind_lb_subnet_ip = "10.10.1" # Use this format. The last number will calculate and add to the end of this IP address.
servers_behind_lb_labels = {
load_balancer_name = "http-low" # Choose the desired name from previously created Load balancers.
firewall_ssh = "yes"
firewall_monitoring = "yes"
firewall_no_cloudflare = "yes"
}
# Variables for servers behind a Load balancer - end
# Add Other Servers if needs
servers_others = [
{
name = "redis"
image = var.ubuntu_22_04
server_type = var.cx11
location = var.lb-location-nbg1-de # should be the same as in Load Balancer var.lb_location below
backups = false
keep_disk = true # Keep the size of the disk if increasing a server size. It allows one to decrease back.
placement_group_name = "hosting" # Choose the desired name from previously created placement groups.
network_subnet_name = "hosting" # Choose the desired name from previously created subnets.
tz = "Europe/Kiev"
ipv4_enabled = true
ipv6_enabled = false
ip = "10.10.0.100" # You might assign an IP address manually if you don't want to change the IP and recreate a server for each terraform apply. Look at the ip_range_network below.
labels = {
firewall_ssh = "yes"
firewall_monitoring = "yes"
}
},
{
name = "mysql"
image = var.ubuntu_22_04
server_type = var.cx11
location = var.lb-location-nbg1-de # should be the same as in Load Balancer var.lb_location below
backups = false
keep_disk = true # Keep the size of the disk if increasing a server size. It allows one to decrease back.
placement_group_name = "hosting" # Choose the desired name from previously created placement groups.
network_subnet_name = "hosting" # Choose the desired name from previously created subnets.
tz = "Europe/Kiev"
ipv4_enabled = true
ipv6_enabled = false
ip = "10.10.0.101" # You might assign an IP address manually if you don't want to change the IP and recreate a server for each terraform apply. Look at the ip_range_network below.
labels = {
firewall_ssh = "yes"
firewall_monitoring = "yes"
}
}
]
# Certificates
certificates = [
{
name = "jazzfest.link"
certificate = null
private_key = null
domains = [
"*.jazzfest.link",
"jazzfest.link"
]
labels = {
"managed" = "true"
"managed_by" = "Terraform"
}
}
]
# Firewall rules
name_firewall_ssh = "ssh"
firewall_ssh_label_selector = [{ label_selector = "firewall_ssh=yes" }]
labels_firewall_ssh = { name = "ssh" }
firewall_ssh = [
{
direction = "in"
protocol = "tcp"
port = "22"
description = "SSH allow access from anywhere"
source_ips = ["0.0.0.0/0", "::/0"]
},
{
direction = "in"
protocol = "icmp"
description = "Responce to ping from anywhere"
source_ips = ["0.0.0.0/0", "::/0"]
},
]
name_firewall_monitoring = "monitoring"
firewall_monitoring_label_selector = [{ label_selector = "firewall_monitoring=yes" }]
labels_firewall_monitoring = { name = "monitoring" }
firewall_monitoring = [
{
direction = "in"
protocol = "tcp"
port = "9100"
description = "Nodeexporter. Allow access for prometheus.domain.com"
source_ips = [
"127.0.0.1/32",
]
},
{
direction = "in"
protocol = "tcp"
port = "9323"
description = "Docker. Allow access for prometheus.domain.com"
source_ips = [
"127.0.0.1/32",
]
},
{
direction = "in"
protocol = "tcp"
port = "9253"
description = "php-fpm_exporter. Allow access for prometheus.domain.com"
source_ips = [
"127.0.0.1/32",
]
},
]
name_firewall_no_cloudflare = "no-cloudflare"
firewall_no_cloudflare_label_selector = [{ label_selector = "firewall_no_cloudflare=yes" }]
labels_firewall_no_cloudflare = { name = "no-cloudflare" }
rules_firewall_no_cloudflare = [
{
direction = "in"
protocol = "tcp"
port = "80"
description = "HTTP allow access from anywhere"
source_ips = ["0.0.0.0/0", "::/0"]
},
{
direction = "in"
protocol = "tcp"
port = "443"
description = "HTTPs allow access from anywhere"
source_ips = ["0.0.0.0/0", "::/0"]
},
]
name_firewall_cloudflare = "cloudflare"
firewall_cloudflare_label_selector = [{ label_selector = "firewall_with_cloudflare=yes" }]
labels_firewall_cloudflare = { name = "with-cloudflare" }
rules_firewall_cloudflare = [
{
direction = "in"
protocol = "tcp"
port = "80"
description = "HTTP allow access only from Cloudflare"
source_ips = [
"103.21.244.0/22",
"103.22.200.0/22",
"103.31.4.0/22",
"104.16.0.0/13",
"104.24.0.0/14",
"108.162.192.0/18",
"131.0.72.0/22",
"141.101.64.0/18",
"162.158.0.0/15",
"172.64.0.0/13",
"173.245.48.0/20",
"188.114.96.0/20",
"190.93.240.0/20",
"197.234.240.0/22",
"198.41.128.0/17",
"2400:cb00::/32",
"2405:8100::/32",
"2405:b500::/32",
"2606:4700::/32",
"2803:f800::/32",
"2a06:98c0::/29",
"2c0f:f248::/32",
]
},
{
direction = "in"
protocol = "tcp"
port = "443"
description = "HTTPs allow access only from Cloudflare"
source_ips = [
"103.21.244.0/22",
"103.22.200.0/22",
"103.31.4.0/22",
"104.16.0.0/13",
"104.24.0.0/14",
"108.162.192.0/18",
"131.0.72.0/22",
"141.101.64.0/18",
"162.158.0.0/15",
"172.64.0.0/13",
"173.245.48.0/20",
"188.114.96.0/20",
"190.93.240.0/20",
"197.234.240.0/22",
"198.41.128.0/17",
"2400:cb00::/32",
"2405:8100::/32",
"2405:b500::/32",
"2606:4700::/32",
"2803:f800::/32",
"2a06:98c0::/29",
"2c0f:f248::/32",
]
}
]
# LB
lb_name = "http-low"
load_balancer_type = var.lb11
lb_location = var.lb-location-nbg1-de
algorithm_type = "round_robin"
network_for_lb = "hosting" # A subnet name that should connect to this LB
lb_labels = {
type = "http",
managed_by = "Terraform"
}
# Networks and subnets
networks = [
{
name = "hosting"
ip_range_network = "10.10.0.0/16"
network_type = "cloud"
network_zone = "eu-central"
delete_protection = false
ip_range_subnet = "10.10.0.0/16" # cidrsubnet doesn't use because network will be recreated destroy/create
expose_routes_to_vswitch = false
# vswitch_id = ""
labels = {
purpose = "hosting",
type = "clients",
}
},
{
name = "kubernetes"
ip_range_network = "10.20.0.0/16"
network_type = "cloud"
network_zone = "us-east"
delete_protection = false
ip_range_subnet = "10.20.0.0/16" # cidrsubnet doesn't use because network will be recreated destroy/create
expose_routes_to_vswitch = false
# vswitch_id = ""
labels = {
purpose = "kubernetes",
type = "clients",
}
}
]
placement_group = {
infrastructure = {
type = "spread"
labels = {
purpose = "monitoring",
type = "prometheus",
}
}
hosting = {
type = "spread"
labels = {
purpose = "hosting",
type = "clients",
}
}
kubernetes = {
type = "spread"
labels = {
purpose = "kubernetes",
type = "clients",
}
}
}
}