-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables-provider.tf
283 lines (241 loc) · 6.78 KB
/
variables-provider.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
## Provider specific variables
## Copy to toplevel
variable "aws_access_key_id" {
description = "AWS Access Key ID"
type = string
default = null
}
variable "aws_secret_access_key" {
description = "AWS Secret Key"
type = string
default = null
}
variable "account_id" {
description = "AWS account ID"
type = string
default = ""
}
variable "kubernetes_version" {
description = "Kubernetes version"
type = string
default = "1.24"
}
variable "region" {
description = "AWS Region"
type = string
default = null
}
variable "vpc_id" {
description = "AWS VPC ID. Example: vpc-xxxxxxxxxxxxxxxxx"
type = string
}
variable "subnet_ids" {
description = "AWS VPC subnet IDs. Applies to all node_groups by default. Example: [\"subnet-xxxxxxxxxxxxxxxxx\",\"subnet-yyyyyyyyyyyyyyyyy\"]"
type = list(string)
}
variable "endpoint_public_access" {
description = "Creates public EKS endpoint"
type = bool
default = true
}
variable "endpoint_public_access_cidrs" {
description = "List of CIDRs to allow access to EKS public endpoint."
type = list(string)
default = ["0.0.0.0/0"]
}
variable "endpoint_private_access" {
description = "Creates private EKS endpoint"
type = bool
default = true
}
variable "endpoint_private_access_cidrs" {
description = "List of CIDRs to allow access to EKS private endpoint."
type = list(string)
default = ["0.0.0.0/0"]
}
variable "vpc_cni_k8s_url" {
description = "URL to Amazon VPC CNI K8S manifests"
type = string
default = "https://raw.githubusercontent.com/aws/amazon-vpc-cni-k8s/v1.7.5/config/v1.7/calico.yaml"
}
variable "eks_addons" {
description = "Manages an EKS add-on"
type = any
default = {}
# Example:
# {
# "vpc-cni": {
# "addon_version": "v1.9.0-eksbuild.1", ## required
# "resolve_conflicts": "OVERWRITE" ## default
# }
# }
}
variable "aws_default_tags" {
description = "AWS tags to apply to all resources via provider"
type = any
default = {}
}
#############################
## Node Groups
#############################
## https://github.com/terraform-aws-modules/terraform-aws-eks/tree/master/modules/node_groups
variable "node_groups_defaults" {
description = "AWS EKS default node_groups definition"
type = any
default = {
instance_types = ["m5.xlarge"]
desired_capacity = 1
min_capacity = 1
max_capacity = 1
disk_size = 50
additional_tags = {}
# To use kubelet_extra_args you must set create_launch_template=true.
# kubelet_extra_args : "--max-pods=110"
# create_launch_template: true
}
validation {
condition = length(var.node_groups_defaults.instance_types) > 0
error_message = "Missing instance_types[]. Ex: [\"m5.xlarge\"]."
}
}
## https://github.com/terraform-aws-modules/terraform-aws-eks/tree/master/modules/node_groups
variable "node_groups" {
description = "AWS EKS node_groups definition"
type = any
default = {
"infra" : {
"min_capacity" : 2
"max_capacity" : 2
"k8s_labels" : {
"role" : "infra"
}
"taints" : [
{
"key" : "dedicated"
"value" : "infra"
"effect" : "NO_SCHEDULE"
}
]
# To use kubelet_extra_args you must set create_launch_template=true.
# kubelet_extra_args : "--max-pods=110"
# create_launch_template: true
}
"app" : {
"min_capacity" : 2
"max_capacity" : 4
"k8s_labels" : {
"role" : "app"
}
# To use kubelet_extra_args you must set create_launch_template=true.
# kubelet_extra_args : "--max-pods=110"
# create_launch_template: true
}
}
}
variable "default_key_name" {
description = "Key name for workers. Applies to all node groups"
type = string
default = ""
}
variable "tags" {
description = "A map of tags to add to all resources"
type = any
default = {}
}
variable "cluster_tags" {
description = "A map of additional tags to add to the cluster"
type = any
default = {}
}
#############################
## Fargate
#############################
## https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/eks_fargate_profile
## Example: [
## {
## namespace: "my-api"
## labels: {
## app: "api"
## release: "1.0"
## }
## }
## ]
variable "fargate_selectors" {
description = "EKS Fargate selectors"
type = any
default = []
}
variable "fargate_private_subnet_ids" {
description = "EKS Fargate subnet IDs"
type = list(string)
default = []
}
#############################
## IAM Authentication
#############################
# Variables `auth_*`: auto-gen IAM->EKS auth users mapping as defined by:
# {
# "userarn": "arn:aws:iam::${account_id}:user/${auth_iam_users[*]}"
# "username": ${auth_default_username}
# "groups": ${auth_default_groups}
# }
#
# Concatenates with `auth_map_users` below
variable "auth_iam_users" {
description = "List of IAM users to allow kubernetes access. Example: [\"eks-admin\"]"
type = list(string)
default = []
}
variable "auth_iam_roles" {
description = "List of IAM roles to allow kubernetes access."
type = list(string)
default = ["getupcloud"]
}
variable "auth_default_username" {
description = "Kubernetes username assumed by IAM users."
type = string
default = "admin"
}
variable "auth_default_groups" {
description = "Kubernetes groups assumed by IAM users."
type = list(string)
default = ["system:masters"]
}
# Hardcoded IAM->EKS auth users mapping.
# Passed as-is to EKS map_users configmap.
# Concatenates with `auth_*` above.
variable "auth_map_users" {
description = "EKS ConfigMap aws-auth according to https://docs.aws.amazon.com/eks/latest/userguide/add-user-role.html"
type = list(object({
userarn : string
username : string
groups : list(string)
}))
default = []
}
variable "auth_map_roles" {
description = "EKS ConfigMap aws-auth according to https://docs.aws.amazon.com/eks/latest/userguide/add-user-role.html"
type = list(object({
rolearn = string
username = string
groups = list(string)
}))
default = []
}
### TODO: use third-party module
### https://github.com/terraform-aws-modules/terraform-aws-rds/blob/master/modules/db_instance/main.tf
variable "db_rds" {
description = "List RDS (See rds.tf for defaults)"
type = any
default = []
}
variable "cluster_rds" {
description = "List Cluster RDS (See rds.tf for defaults)"
type = any
default = []
}
variable "db_subnet_group" {
description = "List subnet group RDS (See rds.tf for defaults)"
type = any
default = []
}