-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheks_variables.tf
48 lines (40 loc) · 1.12 KB
/
eks_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
variable "legacy_security_groups" {
type = bool
default = false
description = "Preserves existing security group setup from pre 1.15 clusters, to allow existing clusters to be upgraded without recreation"
}
variable "log_retention" {
type = string
default = "30"
}
variable "aws_auth_role_map" {
type = list(object({
rolearn = string
username = string
groups = list(string)
}))
default = []
description = "A list of mappings from aws role arns to kubernetes users, and their groups"
}
variable "aws_auth_user_map" {
type = list(object({
userarn = string
username = string
groups = list(string)
}))
default = []
description = "A list of mappings from aws user arns to kubernetes users, and their groups"
}
variable "fstype" {
type = string
default = "xfs"
description = "File system type that will be formatted during volume creation, (xfs, ext2, ext3 or ext4)"
}
variable "eks_version" {
type = string
default = "1.24" # kubernetesVersion
}
variable "nodegroup_version" {
type = string
default = "1.24" # workerNodeGroupVersion
}