forked from provectus/sak-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
257 lines (211 loc) · 6.8 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
variable "environment" {
type = string
default = null
description = "A value that will be used in annotations and tags to identify resources with the `Environment` key"
}
variable "project" {
type = string
default = null
description = "A value that will be used in annotations and tags to identify resources with the `Project` key"
}
variable "cluster_name" {
type = string
default = "test"
description = "A name of the Amazon EKS cluster"
}
variable "cluster_version" {
type = string
description = "EKS cluster version"
default = "1.19"
}
variable "vpc_id" {
type = string
default = null
description = "An ID of the existing AWS VPC"
}
variable "availability_zones" {
description = "Availability zones for project"
type = list(any)
default = []
}
variable "subnets" {
type = list(any)
description = "vpc subnets"
}
variable "domains" {
type = list(string)
default = []
description = "A list of domains to use for ingresses"
}
variable "admin_arns" {
description = "Additional IAM users to add to the aws-auth configmap."
type = list(object({
userarn = string
username = string
groups = list(string)
}))
default = []
}
variable "user_arns" {
description = "Additional IAM users to add to the aws-auth configmap."
type = list(object({
userarn = string
username = string
groups = list(string)
}))
default = []
}
variable "addon_create_vpc_cni" {
description = "Add addon for EKS cluster"
default = true
type = bool
}
variable "addon_vpc_cni_version" {
description = "VPC addon version for EKS cluster"
default = "v1.7.5-eksbuild.2"
type = string
}
variable "addon_create_kube_proxy" {
description = "Add addon for EKS cluster"
default = true
type = bool
}
variable "addon_kube_proxy_version" {
description = "Kubeproxy addon version for EKS cluster"
default = "default"
type = string
}
variable "addon_create_coredns" {
description = "Add addon for EKS cluster"
default = true
type = bool
}
variable "addon_coredns_version" {
description = "coredns addon version for EKS cluster"
default = "default"
type = string
}
# On-demand instance
variable "on_demand_common_max_cluster_size" {
type = string
description = "Max number of on demand instances in EKS autoscaling group"
default = "2"
}
variable "on_demand_common_min_cluster_size" {
type = string
description = "Min number of on demand instances in EKS autoscaling group"
default = "1"
}
variable "on_demand_common_desired_capacity" {
type = string
description = "Desired number of on_demand instances in EKS autoscaling group"
default = "1"
}
variable "on_demand_common_instance_type" {
description = "EC2 on_demand Instance type"
default = "m5.large"
}
variable "on_demand_common_override_instance_types" {
description = "EC2 on_demand override instance types"
default = ["m5.large", "m5.xlarge", "m5.2xlarge"]
}
variable "on_demand_common_allocation_strategy" {
description = "Strategy to use when launching on-demand instances. Valid values: prioritized"
default = "prioritized"
}
variable "on_demand_common_base_capacity" {
description = "Absolute minimum amount of desired capacity that must be fulfilled by on-demand instances"
default = "0"
}
variable "on_demand_common_percentage_above_base_capacity" {
description = "Percentage split between on-demand and Spot instances above the base on-demand capacity"
default = "0"
}
variable "on_demand_common_asg_recreate_on_change" {
description = "Recreate the autoscaling group when the Launch Template or Launch Configuration change."
default = "true"
}
# On-demand GPU instance
variable "on_demand_gpu_max_cluster_size" {
type = string
description = "Max number of on demand instances in EKS autoscaling group"
default = "2"
}
variable "on_demand_gpu_min_cluster_size" {
type = string
description = "Min number of on demand instances in EKS autoscaling group"
default = "0"
}
variable "on_demand_gpu_desired_capacity" {
type = string
description = "Desired number of on_demand instances in EKS autoscaling group"
default = "0"
}
variable "on_demand_gpu_instance_type" {
description = "EC2 on_demand Instance type"
default = "p2.xlarge"
}
variable "on_demand_gpu_override_instance_types" {
description = "EC2 on_demand Instance types for overriding"
default = ["g4dn.xlarge"]
}
variable "on_demand_gpu_resource_count" {
description = "A number of GPUs resopurces for the instance type"
default = 1
}
variable "on_demand_gpu_allocation_strategy" {
description = "Strategy to use when launching on-demand instances. Valid values: prioritized"
default = "prioritized"
}
variable "on_demand_gpu_base_capacity" {
description = "Absolute minimum amount of desired capacity that must be fulfilled by on-demand instances"
default = "0"
}
variable "on_demand_gpu_percentage_above_base_capacity" {
description = "Percentage split between on-demand and Spot instances above the base on-demand capacity"
default = "0"
}
variable "on_demand_gpu_asg_recreate_on_change" {
description = "Recreate the autoscaling group when the Launch Template or Launch Configuration change."
default = "true"
}
# On-demand CPU instance
variable "on_demand_cpu_max_cluster_size" {
type = string
description = "Max number of on demand instances in EKS autoscaling group"
default = "2"
}
variable "on_demand_cpu_min_cluster_size" {
type = string
description = "Min number of on demand instances in EKS autoscaling group"
default = "0"
}
variable "on_demand_cpu_desired_capacity" {
type = string
description = "Desired number of on_demand instances in EKS autoscaling group"
default = "0"
}
variable "on_demand_cpu_instance_type" {
description = "EC2 on_demand Instance type"
default = "c5.xlarge"
}
variable "on_demand_cpu_override_instance_types" {
description = "EC2 on_demand Instance type"
default = ["c5.xlarge", "c5.2xlarge", "c5n.xlarge"]
}
variable "on_demand_cpu_allocation_strategy" {
description = "Strategy to use when launching on-demand instances. Valid values: prioritized"
default = "prioritized"
}
variable "on_demand_cpu_base_capacity" {
description = "Absolute minimum amount of desired capacity that must be fulfilled by on-demand instances"
default = "0"
}
variable "on_demand_cpu_percentage_above_base_capacity" {
description = "Percentage split between on-demand and Spot instances above the base on-demand capacity"
default = "0"
}
variable "on_demand_cpu_asg_recreate_on_change" {
description = "Recreate the autoscaling group when the Launch Template or Launch Configuration change."
default = "true"
}