forked from terraform-redhat/terraform-rhcs-rosa-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
545 lines (454 loc) · 20.1 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
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
variable "cluster_name" {
type = string
description = "Name of the cluster. After resource creation, it is not possible to update the attribute value."
}
variable "openshift_version" {
type = string
description = "Desired version of OpenShift for the cluster, for example '4.1.0'. If version is later than the currently running version, an upgrade is scheduled."
}
variable "oidc_config_id" {
type = string
default = null
description = "The unique identifier associated with users authenticated through OpenID Connect (OIDC) within the ROSA cluster."
}
variable "aws_subnet_ids" {
type = list(string)
default = []
description = "The subnet IDs to use when installing the cluster. Leave empty for installer provisioned subnet IDs."
}
variable "aws_additional_infra_security_group_ids" {
type = list(string)
default = null
description = "The additional security group IDs to be added to the infra worker nodes."
}
variable "aws_additional_control_plane_security_group_ids" {
type = list(string)
default = null
description = "The additional security group IDs to be added to the control plane nodes."
}
variable "kms_key_arn" {
type = string
default = null
description = "The key ARN is the Amazon Resource Name (ARN) of a CMK. It is a unique, fully qualified identifier for the CMK. A key ARN includes the AWS account, region, and the key ID."
}
variable "aws_private_link" {
type = bool
default = null
description = "Provides private connectivity between VPCs, AWS services, and on-premises networks, without exposing traffic to the public internet. (default: false)"
}
variable "private" {
type = bool
default = null
description = "Restrict master API endpoint and application routes to direct, private connectivity. (default: false)"
}
variable "machine_cidr" {
type = string
default = null
description = "Block of IP addresses used by OpenShift while installing the cluster, for example \"10.0.0.0/16\"."
}
variable "service_cidr" {
type = string
default = null
description = "Block of IP addresses for services, for example \"172.30.0.0/16\"."
}
variable "pod_cidr" {
type = string
default = null
description = "Block of IP addresses from which pod IP addresses are allocated, for example \"10.128.0.0/14\"."
}
variable "host_prefix" {
type = number
default = null
description = "Subnet prefix length to assign to each individual node. For example, if host prefix is set to \"23\", then each node is assigned a /23 subnet out of the given CIDR."
}
variable "ec2_metadata_http_tokens" {
type = string
default = null
description = "Should cluster nodes use both v1 and v2 endpoints or just v2 endpoint of EC2 Instance Metadata Service (IMDS). Available since OpenShift 4.11.0."
}
variable "create_admin_user" {
type = bool
default = null
description = "To create cluster admin user with default username `cluster-admin` and generated password. It will be ignored if `admin_credentials_username` or `admin_credentials_password` is set. (default: false)"
}
variable "admin_credentials_username" {
type = string
default = null
description = "Admin username that is created with the cluster. auto generated username - \"cluster-admin\""
}
variable "admin_credentials_password" {
type = string
default = null
description = "Admin password that is created with the cluster. The password must contain at least 14 characters (ASCII-standard) without whitespaces including uppercase letters, lowercase letters, and numbers or symbols."
sensitive = true
}
variable "private_hosted_zone_id" {
type = string
default = null
description = "ID assigned by AWS to private Route 53 hosted zone associated with intended shared VPC, e.g., 'Z05646003S02O1ENCDCSN'."
}
variable "private_hosted_zone_role_arn" {
type = string
default = null
description = "AWS IAM role ARN with a policy attached, granting permissions necessary to create and manage Route 53 DNS records in private Route 53 hosted zone associated with intended shared VPC."
}
variable "base_dns_domain" {
type = string
default = null
description = "Base DNS domain name previously reserved and matching the hosted zone name of the private Route 53 hosted zone associated with intended shared VPC, e.g., '1vo8.p1.openshiftapps.com'."
}
##############################################################
# Proxy variables
##############################################################
variable "http_proxy" {
type = string
default = null
description = "A proxy URL to use for creating HTTP connections outside the cluster. The URL scheme must be http."
}
variable "https_proxy" {
type = string
default = null
description = "A proxy URL to use for creating HTTPS connections outside the cluster."
}
variable "no_proxy" {
type = string
default = null
description = "A comma-separated list of destination domain names, domains, IP addresses or other network CIDRs to exclude proxying."
}
variable "additional_trust_bundle" {
type = string
default = null
description = "A string containing a PEM-encoded X.509 certificate bundle that will be added to the nodes' trusted certificate store."
}
##############################################################
# Optional properties and tags
##############################################################
variable "properties" {
description = "User defined properties."
type = map(string)
default = null
}
variable "tags" {
description = "Apply user defined tags to all cluster resources created in AWS. After the creation of the cluster is completed, it is not possible to update this attribute."
type = map(string)
default = null
}
##############################################################
# Optional ROSA Cluster Installation flags
##############################################################
variable "wait_for_create_complete" {
type = bool
default = true
description = "Wait until the cluster is either in a ready state or in an error state. The waiter has a timeout of 60 minutes. (default: true)"
}
variable "disable_workload_monitoring" {
type = bool
default = null
description = "Enables you to monitor your own projects in isolation from Red Hat Site Reliability Engineer (SRE) platform metrics."
}
variable "disable_scp_checks" {
type = bool
default = null
description = "Indicates if cloud permission checks are disabled when attempting installation of the cluster."
}
variable "etcd_encryption" {
type = bool
default = null
description = "Add etcd encryption. By default, etcd data is encrypted at rest. This option configures etcd encryption on top of existing storage encryption."
}
variable "fips" {
type = bool
default = null
description = "Create cluster that uses FIPS Validated / Modules in Process cryptographic libraries."
}
variable "disable_waiting_in_destroy" {
type = bool
default = null
description = "Disable addressing cluster state in the destroy resource. Default value is false; `destroy` waits for the cluster to be deleted."
}
variable "destroy_timeout" {
type = number
default = null
description = "Maximum duration in minutes to allow for destroying resources. (Default: 60 minutes)"
}
variable "upgrade_acknowledgements_for" {
type = string
default = null
description = "Indicates acknowledgement of agreements required to upgrade the cluster version between minor versions (e.g. a value of \"4.12\" indicates acknowledgement of any agreements required to upgrade to OpenShift 4.12.z from 4.11 or before)."
}
##############################################################
# Default Machine Pool Variables
# These attributes are specifically applies for the default Machine Pool and becomes irrelevant once the resource is created.
# Any modifications to the default Machine Pool should be made through the Terraform imported Machine Pool resource.
##############################################################
variable "multi_az" {
type = bool
default = null
description = "Specifies whether the deployment of the cluster should extend across multiple availability zones. (default: false)"
}
variable "autoscaling_enabled" {
type = bool
default = null
description = "Enable autoscaling for the initial worker pool. (default: false)"
}
variable "replicas" {
type = number
default = null
description = "Number of worker nodes to provision. This attribute is applicable solely when autoscaling is disabled. Single zone clusters need at least 2 nodes, multizone clusters need at least 3 nodes. Hosted clusters require that the number of worker nodes be a multiple of the number of private subnets. (default: 2)"
}
variable "min_replicas" {
type = number
default = null
description = "Minimum number of compute nodes. This attribute is applicable solely when autoscaling is enabled. (default: 2)"
}
variable "max_replicas" {
type = number
default = null
description = "Maximum number of compute nodes. This attribute is applicable solely when autoscaling is enabled. (default: 2)"
}
variable "compute_machine_type" {
type = string
default = null
description = "Identifies the Instance type used by the default worker machine pool e.g. `m5.xlarge`. Use the `rhcs_machine_types` data source to find the possible values."
}
variable "worker_disk_size" {
type = number
default = null
description = "Default worker machine pool root disk size with a **unit suffix** like GiB or TiB, e.g. 200GiB."
}
variable "default_mp_labels" {
type = map(string)
default = null
description = "Labels for the worker machine pool. This list overwrites any modifications made to node labels on an ongoing basis."
}
variable "aws_availability_zones" {
type = list(string)
default = []
description = "The AWS availability zones where instances of the default worker machine pool are deployed. Leave empty for the installer to pick availability zones."
}
variable "aws_additional_compute_security_group_ids" {
type = list(string)
default = null
description = "The additional security group IDs to be added to the default worker machine pool."
}
##############################################################
# Autoscaler resource variables
##############################################################
variable "cluster_autoscaler_enabled" {
type = bool
default = false
description = "Enable autoscaler for this cluster."
}
variable "autoscaler_balance_similar_node_groups" {
type = bool
default = null
description = "Automatically identify node groups with the same instance type and the same set of labels and try to keep the respective sizes of those node groups balanced."
}
variable "autoscaler_skip_nodes_with_local_storage" {
type = bool
default = null
description = "If true, cluster autoscaler never deletes nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is true."
}
variable "autoscaler_log_verbosity" {
type = number
default = null
description = "Sets the autoscaler log level. Default value is 1, level 4 is recommended for DEBUGGING and level 6 enables almost everything."
}
variable "autoscaler_max_pod_grace_period" {
type = number
default = null
description = "Gives pods graceful termination time before scaling down."
}
variable "autoscaler_pod_priority_threshold" {
type = number
default = null
description = "To allow users to schedule 'best-effort' pods, which shouldn't trigger cluster autoscaler actions, but only run when there are spare resources available."
}
variable "autoscaler_ignore_daemonsets_utilization" {
type = bool
default = null
description = "Should cluster-autoscaler ignore DaemonSet pods when calculating resource utilization for scaling down. Default is false."
}
variable "autoscaler_max_node_provision_time" {
type = string
default = null
description = "Maximum time cluster-autoscaler waits for node to be provisioned."
}
variable "autoscaler_balancing_ignored_labels" {
type = list(string)
default = null
description = "This option specifies labels that cluster autoscaler should ignore when considering node group similarity. For example, if you have nodes with 'topology.ebs.csi.aws.com/zone' label, you can add name of this label here to prevent cluster autoscaler from splitting nodes into different node groups based on its value."
}
variable "autoscaler_max_nodes_total" {
type = number
default = null
description = "Maximum number of nodes in all node groups. Cluster autoscaler does not grow the cluster beyond this number."
}
variable "autoscaler_cores" {
type = object({
min = number
max = number
})
default = null
description = "Minimum and maximum number of cores in cluster, in the format <min>:<max>. Cluster autoscaler does not scale the cluster beyond these numbers."
}
variable "autoscaler_memory" {
type = object({
min = number
max = number
})
default = null
description = "Minimum and maximum number of gigabytes of memory in cluster, in the format <min>:<max>. Cluster autoscaler does not scale the cluster beyond these numbers."
}
variable "autoscaler_gpus" {
type = list(object({
type = string
range = object({
min = number
max = number
})
}))
default = null
description = "Minimum and maximum number of different GPUs in cluster, in the format <gpu_type>:<min>:<max>. Cluster autoscaler does not scale the cluster beyond these numbers. Can be passed multiple times."
}
variable "autoscaler_scale_down_enabled" {
type = bool
default = null
description = "Should cluster-autoscaler scale down the cluster."
}
variable "autoscaler_scale_down_unneeded_time" {
type = string
default = null
description = "How long a node should be unneeded before it is eligible for scale down."
}
variable "autoscaler_scale_down_utilization_threshold" {
type = string
default = null
description = "Node utilization level, defined as sum of requested resources divided by capacity, below which a node can be considered for scale down."
}
variable "autoscaler_scale_down_delay_after_add" {
type = string
default = null
description = "How long after scale up that scale down evaluation resumes."
}
variable "autoscaler_scale_down_delay_after_delete" {
type = string
default = null
description = "How long after node deletion that scale down evaluation resumes."
}
variable "autoscaler_scale_down_delay_after_failure" {
type = string
default = null
description = "How long after scale down failure that scale down evaluation resumes."
}
##############################################################
# default_ingress resource variables
##############################################################
variable "default_ingress_id" {
type = string
default = null
description = "Unique identifier of the ingress."
}
variable "default_ingress_route_selectors" {
type = map(string)
default = null
description = "Route Selectors for ingress. Format should be a comma-separated list of 'key=value'. If no label is specified, all routes are exposed on both routers. For legacy ingress support, these are inclusion labels, otherwise they are treated as exclusion label."
}
variable "default_ingress_excluded_namespaces" {
type = list(string)
default = null
description = "Excluded namespaces for ingress. Format should be a comma-separated list 'value1, value2...'. If no values are specified, all namespaces are exposed."
}
variable "default_ingress_route_wildcard_policy" {
type = string
default = null
description = "Wildcard policy for ingress. Options are [\"WildcardsDisallowed\", \"WildcardsAllowed\"]. Default is \"WildcardsDisallowed\"."
}
variable "default_ingress_route_namespace_ownership_policy" {
type = string
default = null
description = "Namespace ownership policy for ingress. Options are [\"Strict\", \"InterNamespaceAllowed\"]. Default is \"Strict\"."
}
variable "default_ingress_cluster_routes_hostname" {
type = string
default = null
description = "Components route hostname for oauth, console, download."
}
variable "default_ingress_load_balancer_type" {
type = string
default = null
description = "Type of Load Balancer. Options are [\"classic\", \"nlb\"]`:with."
}
variable "default_ingress_cluster_routes_tls_secret_ref" {
type = string
default = null
description = "Components route TLS secret reference for oauth, console, download."
}
##############################################################
# General variables
# Relevant to "account roles", "operator roles" and "OIDC"
##############################################################
variable "path" {
type = string
default = "/"
description = "The ARN path for the account/operator roles and policies."
}
variable "permissions_boundary" {
type = string
default = ""
description = "The ARN of the policy that is used to set the permissions boundary for the IAM roles in STS clusters."
}
##############################################################
# Account Roles
##############################################################
variable "create_account_roles" {
type = bool
default = false
description = "Create the AWS account roles for ROSA."
}
variable "account_role_prefix" {
type = string
default = null
description = "User-defined prefix for all generated AWS resources (default \"account-role-<random>\")."
}
##############################################################
# OIDC provider and config
##############################################################
variable "create_oidc" {
description = "Create the OIDC resources."
type = bool
default = false
}
variable "managed_oidc" {
description = "OIDC type managed or unmanaged OIDC."
type = bool
default = true
}
##############################################################
# Operator policies and roles
##############################################################
variable "create_operator_roles" {
description = "Create the AWS account roles for ROSA."
type = bool
default = false
}
variable "operator_role_prefix" {
type = string
default = null
description = "User-defined prefix for generated AWS operator policies. Use \"account-role-prefix\" in case no value provided."
}
variable "oidc_endpoint_url" {
type = string
default = null
description = "Registered OIDC configuration issuer URL, added as the trusted relationship to the operator roles. Valid only when create_oidc is false."
}
variable "machine_pools" {
type = map(any)
default = {}
description = "Provides a generic approach to add multiple machine pools after the creation of the cluster. This variable allows users to specify configurations for multiple machine pools in a flexible and customizable manner, facilitating the management of resources post-cluster deployment. For additional details regarding the variables utilized, refer to the [machine-pool sub-module](./modules/machine-pool). For non-primitive variables (such as maps, lists, and objects), supply the JSON-encoded string."
}
variable "identity_providers" {
type = map(any)
default = {}
description = "Provides a generic approach to add multiple identity providers after the creation of the cluster. This variable allows users to specify configurations for multiple identity providers in a flexible and customizable manner, facilitating the management of resources post-cluster deployment. For additional details regarding the variables utilized, refer to the [idp sub-module](./modules/idp). For non-primitive variables (such as maps, lists, and objects), supply the JSON-encoded string."
}