-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
234 lines (190 loc) · 4.99 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
variable "cluster_id" {
type = string
description = "The cluster's Project Syn ID"
}
variable "cluster_name" {
type = string
description = "The cluster's display name. If this is not set, cluster_id is used"
default = ""
}
variable "region" {
type = string
default = "ch-dk-2"
}
variable "rhcos_template" {
type = string
}
variable "base_domain" {
type = string
}
variable "ssh_key" {
type = string
}
variable "existing_keypair" {
type = string
default = ""
}
variable "privnet_cidr" {
type = string
default = "172.18.200.0/24"
}
variable "use_privnet" {
type = bool
default = false
}
variable "bootstrap_count" {
type = number
default = 0
}
variable "worker_count" {
type = number
default = 3
}
variable "infra_count" {
type = number
default = 4
}
variable "storage_count" {
type = number
default = 3
}
variable "master_count" {
type = number
default = 3
}
variable "lb_count" {
type = number
default = 2
}
variable "worker_type" {
type = string
default = "standard.extra-large"
}
variable "infra_type" {
type = string
default = "standard.extra-large"
}
variable "storage_type" {
type = string
default = "cpu.extra-large"
}
variable "master_type" {
type = string
default = "standard.extra-large"
}
variable "bootstrap_state" {
type = string
default = "running"
}
variable "master_state" {
type = string
default = "running"
}
variable "worker_state" {
type = string
default = "running"
}
variable "infra_state" {
type = string
default = "running"
}
variable "storage_state" {
type = string
default = "running"
}
variable "root_disk_size" {
type = number
default = 100
validation {
condition = var.root_disk_size >= 100
error_message = "The minimum supported root disk size is 100GB."
}
}
variable "infra_data_disk_size" {
type = number
default = 0
validation {
condition = var.infra_data_disk_size >= 0
error_message = "The infra data disk size cannot be negative."
}
}
variable "worker_data_disk_size" {
type = number
default = 0
validation {
condition = var.worker_data_disk_size >= 0
error_message = "The worker data disk size cannot be negative."
}
}
variable "storage_cluster_disk_size" {
type = number
default = 180
validation {
condition = var.storage_cluster_disk_size >= 180
error_message = "The minimum supported storage cluster disk size is 180GB."
}
}
variable "additional_worker_groups" {
type = map(object({ type = string, count = number, data_disk_size = optional(number), state = optional(string), affinity_group_ids = optional(list(string)) }))
default = {}
validation {
condition = alltrue([
for k, v in var.additional_worker_groups :
!contains(["worker", "master", "infra", "storage"], k) &&
v.count >= 0 &&
(v.data_disk_size != null ? v.data_disk_size >= 0 : true) &&
(v.state != null ? lower(v.state) == "running" || lower(v.state) == "stopped" : true)
])
// Cannot use any of the nicer string formatting options because
// error_message validation is dumb, cf.
// https://github.com/hashicorp/terraform/issues/24123
error_message = "Your configuration of `additional_worker_groups` violates one of the following constraints:\n * The worker data disk size cannot be negative.\n * Additional worker group names cannot be 'worker', 'master', 'infra', or 'storage'.\n * The only valid worker states are 'running' or 'stopped'.\n * The worker count cannot be less than 0."
}
}
variable "additional_affinity_group_ids" {
type = list(string)
default = []
description = "List of additional affinity group IDs to configure on all nodes"
}
variable "additional_security_group_ids" {
type = list(string)
default = []
description = "List of additional security group IDs to configure on worker nodes"
}
variable "deploy_target_id" {
type = string
default = ""
description = "ID of special deployment target, e.g. dedicated hypervisors"
}
variable "affinity_group_capacity" {
type = number
default = 0
description = "Capacity of the affinity group, e.g. when using dedicated hypervisors, default: 0 (unlimited)"
}
variable "ignition_ca" {
type = string
}
variable "bootstrap_bucket" {
type = string
}
variable "hieradata_repo_user" {
type = string
}
variable "control_vshn_net_token" {
type = string
}
variable "team" {
type = string
description = "Team to assign the load balancers to in Icinga. All lower case."
default = ""
}
variable "lb_enable_proxy_protocol" {
type = bool
description = "Enable the PROXY protocol on the loadbalancers. WARNING: Connections will fail until you enable the same on the OpenShift router as well"
default = false
}
variable "additional_lb_networks" {
type = list(string)
description = "List of UUIDs of additional Exoscale private networks to attach"
default = []
}