-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
260 lines (224 loc) · 8.71 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
variable "region" {
type = string
description = "AWS Region"
}
variable "eks_cluster_id" {
type = string
description = "EKS Cluster identifier"
}
variable "ocean_controller_id" {
type = string
description = "Ocean Cluster identifier, used by cluster controller to target this cluster. If unset, will use EKS cluster identifier"
default = null
}
variable "instance_profile" {
type = string
description = "The AWS Instance Profile to use for Spotinst Worker instances. If not set, one will be created."
default = null
}
variable "metadata_http_tokens_required" {
type = bool
default = true
description = "Whether or not the metadata service requires session tokens, also referred to as Instance Metadata Service Version 2."
}
variable "metadata_http_put_response_hop_limit" {
type = number
default = 2
description = "The desired HTTP PUT response hop limit (between 1 and 64) for instance metadata requests."
}
variable "min_size" {
type = number
description = "The lower limit of worker nodes the Ocean cluster can scale down to"
default = 1
}
variable "max_size" {
type = number
description = "The upper limit of worker nodes the Ocean cluster can scale up to"
default = null
}
variable "desired_capacity" {
type = number
description = "The number of worker nodes to launch and maintain in the Ocean cluster"
default = 1
}
variable "associate_public_ip_address" {
type = bool
description = "Associate a public IP address to worker nodes"
default = false
}
variable "module_depends_on" {
type = any
default = null
description = "Can be any value desired. Module will wait for this value to be computed before creating node group."
}
variable "disk_size" {
type = number
description = <<-EOT
Disk size in GiB for worker nodes. Defaults to 20. Ignored it `launch_template_id` is supplied.
Terraform will only perform drift detection if a configuration value is provided.
EOT
default = 20
}
variable "instance_types" {
type = list(string)
default = null
description = <<-EOT
List of instance type to use for this node group. Defaults to null, which allows all instance types.
EOT
}
variable "ec2_ssh_key" {
type = string
description = "SSH key pair name to use to access the worker nodes launced by Ocean"
default = null
}
variable "fallback_to_ondemand" {
type = bool
description = "If no Spot instance markets are available, enable Ocean to launch On-Demand instances instead."
default = true
}
variable "subnet_ids" {
description = "A list of subnet IDs to launch resources in"
type = list(string)
}
variable "security_group_ids" {
type = list(string)
description = "List of security groups that will be attached to the autoscaling group"
}
variable "existing_workers_role_policy_arns" {
type = list(string)
default = []
description = "List of existing policy ARNs that will be attached to the workers default role on creation"
}
variable "ami_image_id" {
type = string
description = "AMI to use. Ignored of `launch_template_id` is supplied."
default = null
}
variable "ami_release_version" {
type = string
description = "EKS AMI version to use, e.g. \"1.16.13-20200821\" (no \"v\"). Defaults to latest version for Kubernetes version."
default = null
validation {
condition = (
length(compact([var.ami_release_version])) == 0 ? true : length(regexall("^\\d+\\.\\d+\\.\\d+-\\d+$", var.ami_release_version)) == 1
)
error_message = "Var ami_release_version, if supplied, must be like \"1.16.13-20200821\" (no \"v\")."
}
}
variable "ami_type" {
type = string
description = <<-EOT
Type of Amazon Machine Image (AMI) associated with the Ocean.
Defaults to `AL2_x86_64`. Valid values: `AL2_x86_64`, `AL2_x86_64_GPU`, and `AL2_ARM_64`.
EOT
default = "AL2_x86_64"
validation {
condition = (
contains(["AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64"], var.ami_type)
)
error_message = "Var ami_type must be one of \"AL2_x86_64\", \"AL2_x86_64_GPU\", and \"AL2_ARM_64\"."
}
}
variable "kubernetes_version" {
type = string
description = "Kubernetes version. Required unless `ami_image_id` is provided."
default = null
validation {
condition = (
length(compact([var.kubernetes_version])) == 0 ? true : length(regexall("^\\d+\\.\\d+$", var.kubernetes_version)) == 1
)
error_message = "Var kubernetes_version, if supplied, must be like \"1.16\" (no patch level)."
}
}
variable "kubernetes_labels" {
type = map(string)
description = <<-EOT
Key-value mapping of Kubernetes labels. Only labels that are applied with the EKS API are managed by this argument.
Other Kubernetes labels applied to the EKS Node Group will not be managed.
EOT
default = {}
}
variable "kubernetes_taints" {
type = map(string)
description = "Key-value mapping of Kubernetes taints."
default = {}
}
variable "kubelet_additional_options" {
type = string
description = <<-EOT
Additional flags to pass to kubelet.
DO NOT include `--node-labels` or `--node-taints`,
use `kubernetes_labels` and `kubernetes_taints` to specify those."
EOT
default = ""
validation {
condition = (length(compact([var.kubelet_additional_options])) == 0 ? true :
length(regexall("--node-labels", var.kubelet_additional_options)) == 0 &&
length(regexall("--node-taints", var.kubelet_additional_options)) == 0
)
error_message = "Var kubelet_additional_options must not contain \"--node-labels\" or \"--node-taints\". Use `kubernetes_labels` and `kubernetes_taints` to specify labels and taints."
}
}
variable "before_cluster_joining_userdata" {
type = string
default = ""
description = "Additional `bash` commands to execute on each worker node before joining the EKS cluster (before executing the `bootstrap.sh` script). For more info, see https://kubedex.com/90-days-of-aws-eks-in-production"
}
variable "after_cluster_joining_userdata" {
type = string
default = ""
description = "Additional `bash` commands to execute on each worker node after joining the EKS cluster (after executing the `bootstrap.sh` script). For more info, see https://kubedex.com/90-days-of-aws-eks-in-production"
}
variable "bootstrap_additional_options" {
type = string
default = ""
description = "Additional options to bootstrap.sh. DO NOT include `--kubelet-additional-args`, use `kubelet_additional_args` var instead."
}
variable "userdata_override_base64" {
type = string
default = null
description = <<-EOT
Many features of this module rely on the `bootstrap.sh` provided with Amazon Linux, and this module
may generate "user data" that expects to find that script. If you want to use an AMI that is not
compatible with the Amazon Linux `bootstrap.sh` initialization, then use `userdata_override_base64` to provide
your own (Base64 encoded) user data. Use "" to prevent any user data from being set.
Setting `userdata_override_base64` disables `kubernetes_taints`, `kubelet_additional_options`,
`before_cluster_joining_userdata`, `after_cluster_joining_userdata`, and `bootstrap_additional_options`.
EOT
}
variable "update_policy_should_roll" {
type = bool
default = true
description = "If true, roll the cluster when its configuration is updated"
}
variable "update_policy_batch_size_percentage" {
type = number
default = 25
description = "When rolling the cluster due to an update, the percentage of the instances to deploy in each batch."
}
variable "autoscale_is_enabled" {
type = bool
description = "Enable the Ocean Kubernetes Auto Scaler."
default = true
}
variable "autoscale_is_auto_config" {
type = bool
description = "Automatically configure and optimize headroom resources."
default = true
}
variable "enable_automatic_and_manual_headroom" {
type = bool
description = "Enables automatic and manual headroom to work in parallel. When set to false, automatic headroom overrides all other headroom definitions manually configured, whether they are at cluster or VNG level."
default = true
}
variable "kubelet_graceful_node_shutdown" {
type = object({
shutdownGracePeriod = string
shutdownGracePeriodCriticalPods = string
})
default = {
shutdownGracePeriod = "60s"
shutdownGracePeriodCriticalPods = "20s"
}
description = "Configures graceful node shutdown. Set to 0 to disable graceful node shutdowns https://kubernetes.io/docs/concepts/architecture/nodes/#graceful-node-shutdown"
}