-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
69 lines (57 loc) · 1.32 KB
/
variables.tf
File metadata and controls
69 lines (57 loc) · 1.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
variable "region" {
type = string
default = "us-west-1"
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}
variable "cluster_name" {
description = "Name of the EKS cluster"
type = string
default = "secoda"
}
variable "cluster_version" {
description = "Name of the EKS cluster"
type = string
default = "1.30"
}
variable "aws_auth_roles" {
description = "A map of extra roles to be added into aws-auth"
type = list(any)
default = []
}
variable "aws_auth_users" {
description = "A map of extra roles to be added into aws-auth"
type = list(any)
default = []
}
variable "vpc_cidr" {
type = string
default = "10.0.0.0/16"
}
variable "vpc_azs" {
type = list(string)
default = ["us-west-1b", "us-west-1c"]
}
variable "private_subnets" {
type = list(string)
default = ["10.0.0.0/24", "10.0.2.0/24"]
}
variable "database_subnets" {
type = list(string)
default = ["10.0.20.0/24", "10.0.22.0/24"]
}
variable "elasticache_subnets" {
type = list(string)
default = ["10.0.30.0/24", "10.0.32.0/24"]
}
variable "public_subnets" {
type = list(string)
default = ["10.0.10.0/24", "10.0.12.0/24"]
}
variable "enable_flow_log" {
type = bool
default = false
}