forked from cookpad/terraform-aws-eks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
31 lines (25 loc) · 889 Bytes
/
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
variable "cluster_name" {
type = string
description = "A name for the EKS cluster, and the resources it depends on"
}
variable "cidr_block" {
type = string
description = "The CIDR block for the VPC that EKS will run in"
}
variable "availability_zones" {
type = list(string)
description = "The availability zones to launch worker nodes in"
}
variable "aws_auth_role_map" {
default = []
description = "A list of mappings from aws role arns to kubernetes users, and their groups"
}
variable "aws_auth_user_map" {
default = []
description = "A list of mappings from aws user arns to kubernetes users, and their groups"
}
variable "envelope_encryption_enabled" {
type = bool
default = true
description = "Should Cluster Envelope Encryption be enabled, if changed after provisioning - forces the cluster to be recreated"
}