-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcluster.tf
72 lines (68 loc) · 1.69 KB
/
cluster.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
module "cluster" {
source = "cktf/cluster/hcloud"
version = "1.3.0"
name = var.name
bastion = merge(var.hcloud_bastion, { gateway = var.hcloud_gateway })
servers = {
server = {
for key, val in var.servers : key => {
type = val.type
network = var.hcloud_network
location = val.location
ssh_keys = var.ssh_keys
}
}
agent = {
for key, val in var.agents : key => {
type = val.type
network = var.hcloud_network
location = val.location
ssh_keys = var.ssh_keys
}
}
}
firewalls = {
server = {
inbounds = {}
outbounds = {
"icmp" = {
description = "ICMP Outbound Traffic"
destination_ips = ["0.0.0.0/0", "::/0"]
}
"any:tcp" = {
description = "TCP Outbound Traffic"
destination_ips = ["0.0.0.0/0", "::/0"]
}
"any:udp" = {
description = "UDP Outbound Traffic"
destination_ips = ["0.0.0.0/0", "::/0"]
}
}
}
agent = {
inbounds = {}
outbounds = {
"icmp" = {
description = "ICMP Outbound Traffic"
destination_ips = ["0.0.0.0/0", "::/0"]
}
"any:tcp" = {
description = "TCP Outbound Traffic"
destination_ips = ["0.0.0.0/0", "::/0"]
}
"any:udp" = {
description = "UDP Outbound Traffic"
destination_ips = ["0.0.0.0/0", "::/0"]
}
}
}
}
load_balancers = {
server = {
network = tonumber(var.hcloud_network)
mapping = {
tonumber(module.rke.port) = tonumber(module.rke.port)
}
}
}
}