forked from fvumbaca/terraform-proxmox-k3s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
246 lines (211 loc) · 6.48 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
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
variable "proxmox_node" {
description = "Proxmox node to create VMs on."
type = string
}
variable "authorized_keys_file" {
description = "Path to file containing public SSH keys for remoting into nodes."
type = string
}
variable "network_gateway" {
description = "IP address of the network gateway."
type = string
validation {
# condition = can(regex("^[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}/[0-9]{1,2}$", var.network_gateway))
condition = can(regex("^[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}$", var.network_gateway))
error_message = "The network_gateway value must be a valid ip."
}
}
variable "lan_subnet" {
description = <<EOF
Subnet used by the LAN network. Note that only the bit count number at the end
is acutally used, and all other subnets provided are secondary subnets.
EOF
type = string
validation {
condition = can(regex("^[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}/[0-9]{1,2}$", var.lan_subnet))
error_message = "The lan_subnet value must be a valid cidr range."
}
}
variable "control_plane_subnet" {
description = <<EOF
EOF
type = string
validation {
condition = can(regex("^[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}/[0-9]{1,2}$", var.control_plane_subnet))
error_message = "The control_plane_subnet value must be a valid cidr range."
}
}
variable "cluster_name" {
default = "k3s"
type = string
description = "Name of the cluster used for prefixing cluster components (ie nodes)."
}
variable "node_template" {
type = string
description = <<EOF
Proxmox vm to use as a base template for all nodes. Can be a template or
another vm that supports cloud-init.
EOF
}
variable "proxmox_resource_pool" {
description = "Resource pool name to use in proxmox to better organize nodes."
type = string
default = ""
}
variable "support_node_settings" {
type = object({
cores = optional(number),
sockets = optional(number),
memory = optional(number),
storage_type = optional(string),
storage_id = optional(string),
disk_size = optional(string),
user = optional(string),
db_name = optional(string),
db_user = optional(string),
network_bridge = optional(string),
network_tag = optional(number),
})
}
variable "master_nodes_count" {
description = "Number of master nodes."
default = 2
type = number
}
variable "master_node_settings" {
type = object({
cores = optional(number),
sockets = optional(number),
memory = optional(number),
storage_type = optional(string),
storage_id = optional(string),
disk_size = optional(string),
user = optional(string),
network_bridge = optional(string),
network_tag = optional(number),
})
}
variable "node_pools" {
description = "Node pool definitions for the cluster."
type = list(object({
name = string,
size = number,
subnet = string,
taints = optional(list(string)),
cores = optional(number),
sockets = optional(number),
memory = optional(number),
storage_type = optional(string),
storage_id = optional(string),
disk_size = optional(string),
user = optional(string),
network_tag = optional(number),
template = optional(string),
network_bridge = optional(string),
}))
}
variable "api_hostnames" {
description = "Alternative hostnames for the API server."
type = list(string)
default = []
}
variable "k3s_disable_components" {
description = "List of components to disable. Ref: https://rancher.com/docs/k3s/latest/en/installation/install-options/server-config/#kubernetes-components"
type = list(string)
default = []
}
variable "http_proxy" {
default = ""
type = string
description = "http_proxy"
}
variable "nameserver" {
default = ""
type = string
description = "nameserver"
}
}
variable "node_template" {
type = string
description = <<EOF
Proxmox vm to use as a base template for all nodes. Can be a template or
another vm that supports cloud-init.
EOF
}
variable "proxmox_resource_pool" {
description = "Resource pool name to use in proxmox to better organize nodes."
type = string
default = ""
}
variable "support_node_settings" {
type = object({
cores = optional(number),
sockets = optional(number),
memory = optional(number),
storage_type = optional(string),
storage_id = optional(string),
disk_size = optional(string),
user = optional(string),
db_name = optional(string),
db_user = optional(string),
network_bridge = optional(string),
network_tag = optional(number),
})
}
variable "master_nodes_count" {
description = "Number of master nodes."
default = 2
type = number
}
variable "master_node_settings" {
type = object({
cores = optional(number),
sockets = optional(number),
memory = optional(number),
storage_type = optional(string),
storage_id = optional(string),
disk_size = optional(string),
user = optional(string),
network_bridge = optional(string),
network_tag = optional(number),
})
}
variable "node_pools" {
description = "Node pool definitions for the cluster."
type = list(object({
name = string,
size = number,
subnet = string,
taints = optional(list(string)),
cores = optional(number),
sockets = optional(number),
memory = optional(number),
storage_type = optional(string),
storage_id = optional(string),
disk_size = optional(string),
user = optional(string),
network_tag = optional(number),
template = optional(string),
network_bridge = optional(string),
}))
}
variable "api_hostnames" {
description = "Alternative hostnames for the API server."
type = list(string)
default = []
}
variable "k3s_disable_components" {
description = "List of components to disable. Ref: https://rancher.com/docs/k3s/latest/en/installation/install-options/server-config/#kubernetes-components"
type = list(string)
default = []
}
variable "http_proxy" {
default = ""
type = string
description = "http_proxy"
}
variable "nameserver" {
default = ""
type = string
description = "nameserver"
}