-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
49 lines (41 loc) · 1.14 KB
/
variables.tf
File metadata and controls
49 lines (41 loc) · 1.14 KB
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
variable "vpc_id" {
description = "The VPC to launch the EKS cluster in."
type = string
}
variable "subnet_ids" {
description = "A list of subnet IDs where the EKS cluster control plane (ENIs) will be provisioned."
type = list(string)
}
variable "cluster_enabled_log_types" {
description = "The EKS control plane logs to enable."
type = list(string)
default = []
}
variable "node_groups" {
description = "A map of EKS managed node groups to create."
type = any
default = {}
}
variable "cluster_addons" {
description = "Map of cluster addon configurations to enable for the cluster."
type = any
default = {}
}
variable "cluster_version" {
description = "Kubernetes server version for the cluster."
type = string
default = "1.33"
}
variable "name" {
description = "The name of the cluster."
type = string
}
variable "tags" {
description = "A map of tags to assign to all resources."
type = map(string)
}
variable "additional_iam_policies" {
description = "Add additional IAM policies to cluster nodes."
type = map(string)
default = {}
}