-
Notifications
You must be signed in to change notification settings - Fork 115
/
variables.tf
71 lines (60 loc) · 1.49 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
### network
variable "subnets" {
description = "The list of subnet IDs to deploy your EKS cluster"
type = list(string)
}
### kubernetes cluster
variable "kubernetes_version" {
description = "The target version of kubernetes"
type = string
default = "1.24"
}
variable "node_groups" {
description = "Node groups definition"
default = []
}
variable "managed_node_groups" {
description = "Amazon managed node groups definition"
default = []
}
variable "fargate_profiles" {
description = "Amazon Fargate for EKS profiles"
default = []
}
variable "wait" {
description = "Wait duration after control plane creation"
default = "90s"
}
### feature
variable "enabled_cluster_log_types" {
description = "A list of the desired control plane logging to enable"
type = list(string)
default = []
}
variable "enable_ssm" {
description = "Allow ssh access using session manager"
type = bool
default = false
}
variable "bottlerocket_config" {
description = "Bottlerocket OS configuration"
default = {}
}
### security
variable "policy_arns" {
description = "A list of policy ARNs to attach the node groups role"
type = list(string)
default = []
}
### description
variable "name" {
description = "The logical name of the module instance"
type = string
default = null
}
### tags
variable "tags" {
description = "The key-value maps for tagging"
type = map(string)
default = {}
}