-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
51 lines (44 loc) · 1.18 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
48
49
50
51
variable "aws_region" {
type = string
default = "eu-west-1"
description = "aws region"
}
variable "vpc_cidr" {
type = string
default = "10.100.0.0/16"
description = "main VPC cidr"
}
variable "subnet_public_cidr" {
type = list(string)
default = ["10.100.0.0/24", "10.100.2.0/24", "10.100.4.0/24"]
description = "public subnet CIDRS"
}
variable "subnet_private_cidr" {
type = list(string)
default = ["10.100.1.0/24", "10.100.3.0/24", "10.100.5.0/24"]
description = "private subnet CIDRS"
}
variable "secondary_vpc_cidr" {
type = string
default = "100.64.0.0/16"
description = "secondary VPC cidr"
}
variable "secondary_subnet_private_cidr" {
type = list(string)
default = ["100.64.0.0/18", "100.64.64.0/18", "100.64.128.0/18"]
description = "private subnet CIDRS"
}
variable "vpc_endpoints" {
type = map(string)
default = {
"dynamodb" = "Gateway",
"ec2messages" = "Interface",
"eks" = "Interface",
"s3" = "Gateway",
"ssm" = "Interface",
"ssmmessages" = "Interface",
}
}
variable "route53_public_dns" {
default = "k8s.dev.aws.gotocloud.io"
}