-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
29 lines (25 loc) · 748 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
####################################################################
#
# Variables used. All have defaults
#
####################################################################
variable "cluster_name" {
type = string
description = "Name of the cluster"
default = "demo-eks"
}
variable "node_group_desired_capacity" {
type = number
description = "Desired capacity of Node Group ASG."
default = 3
}
variable "node_group_max_size" {
type = number
description = "Maximum size of Node Group ASG. Set to at least 1 greater than node_group_desired_capacity."
default = 4
}
variable "node_group_min_size" {
type = number
description = "Minimum size of Node Group ASG."
default = 1
}