-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (35 loc) · 1.19 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
variable "vpc_cidr" {
type = string
description = "VPC's CIDR block"
default = "10.0.0.0/16"
}
variable "vpc_tenancy" {
type = string
description = "VPC instance tenancy: dedicated, default or host"
default = "default"
}
variable "vpc_dns_support" {
type = string
description = "Whether to enable or disable VPC DNS support"
default = "true"
}
variable "vpc_dns_hostnames" {
type = string
description = "Whether to enable or disable VPC DNS support for host names"
default = "true"
}
variable "public_subnets" {
type = list(any)
description = "List of public subnets to create, one per each availability zone, in CIDR format."
default = ["10.0.32.0/20", "10.0.96.0/20", "10.0.160.0/20"]
}
variable "private_subnets" {
type = list(any)
description = "List of private subnets to create, one per each availability zone, in CIDR format."
default = ["10.0.0.0/19", "10.0.64.0/19", "10.0.128.0/19"]
}
variable "zones" {
type = list(any)
description = "List of availability zones to use. Make sure it is equal or greater than the number of subnets"
default = ["us-east-1a", "us-east-1e", "us-east-1c"]
}