-
Notifications
You must be signed in to change notification settings - Fork 5
/
terraform_input.tf
116 lines (93 loc) · 1.69 KB
/
terraform_input.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
variable "hcloud_token" {
type = string
default = null
}
variable "cluster_name" {
type = string
default = "testkube"
}
variable "cluster_domain" {
type = string
default = ""
}
variable "cluster_ingress" {
type = string
default = "nginx"
}
variable "cluster_cni" {
type = string
default = "cilium-wireguard"
}
variable "registry_mirrors" {
type = map(list(string))
default = {
"docker.io" : ["https://registry-1.docker.io"]
}
}
variable "install_hcloud_ccm" {
type = bool
default = false
}
variable "install_hcloud_csi" {
type = bool
default = false
}
variable "install_cert_manager" {
type = bool
default = false
}
variable "install_ceph_client" {
type = bool
default = false
}
variable "install_reloader" {
type = bool
default = false
}
variable "cluster_authorized_ssh_keys" {
type = list(string)
}
variable "cluster_node_image" {
type = string
default = "ubuntu-20.04"
}
variable "k8s_version" {
type = string
default = "1.21.4"
}
variable "k8s_version_label_key" {
type = string
default = "k8s_version"
}
variable "cluster_label_key" {
type = string
default = "cluster"
}
variable "role_label_key" {
type = string
default = "k8s_role"
}
variable "role_label_control" {
type = string
default = "control"
}
variable "role_label_worker" {
type = string
default = "worker"
}
variable "initializer_label_key" {
type = string
default = "k8s_initializer"
}
variable "initializer_label_value" {
type = string
default = "1"
}
variable "status_label_key" {
type = string
default = "k8s_status"
}
variable "status_label_up" {
type = string
default = "up"
}