You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Number of days to retain cluster logs. Requires `enabled_cluster_log_types` to be set. See https://docs.aws.amazon.com/en_us/eks/latest/userguide/control-plane-logs.html."
32
32
}
33
33
34
-
variable"map_additional_aws_accounts" {
35
-
description="Additional AWS account numbers to add to `config-map-aws-auth` ConfigMap"
36
-
type=list(string)
37
-
default=[]
38
-
}
39
-
40
-
variable"map_additional_iam_roles" {
41
-
description="Additional IAM roles to add to `config-map-aws-auth` ConfigMap"
42
-
43
-
type=list(object({
44
-
rolearn =string
45
-
username =string
46
-
groups =list(string)
47
-
}))
48
-
49
-
default=[]
50
-
}
51
-
52
-
variable"map_additional_iam_users" {
53
-
description="Additional IAM users to add to `config-map-aws-auth` ConfigMap"
54
-
55
-
type=list(object({
56
-
userarn =string
57
-
username =string
58
-
groups =list(string)
59
-
}))
60
-
61
-
default=[]
62
-
}
63
-
64
34
variable"oidc_provider_enabled" {
65
35
type=bool
66
36
default=true
@@ -125,18 +95,6 @@ variable "min_size" {
125
95
description="The minimum size of the AutoScaling Group"
126
96
}
127
97
128
-
variable"launch_template_id" {
129
-
type=string
130
-
description="The ID of a custom launch template to use for the EKS node group."
131
-
default=null
132
-
}
133
-
134
-
variable"launch_template_version" {
135
-
type=string
136
-
description="A specific version of the above specific launch template"
0 commit comments