-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
47 lines (40 loc) · 1.06 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
variable "cidr" {
type = string
description = "TBD"
default = null
}
variable "network_delimiter" {
type = string
description = "TBD"
default = "8"
}
variable "network" {
type = string
description = "Number would be used to template CIDR 10.X.0.0/16."
default = "10"
}
variable "single_nat" {
type = bool
description = "Use single Nat gateway or separeta for all AZ"
default = true
}
variable "environment" {
type = string
default = null
description = "A value that will be used in annotations and tags to identify resources with the `Environment` key"
}
variable "project" {
type = string
default = null
description = "A value that will be used in annotations and tags to identify resources with the `Project` key"
}
variable "cluster_name" {
type = string
default = "cluster-name"
description = "A name of the Amazon EKS cluster"
}
variable "availability_zones" {
description = "Availability zones for project"
type = list(any)
default = []
}