forked from ykhemani/terraform-aws-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
47 lines (40 loc) · 969 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "region" {
type = string
description = "AWS Region in which to provision this VPC."
default = "us-east-1"
}
variable "vpc_cidr" {
type = string
description = "VPC CIDR"
default = "10.0.0.0/16"
}
variable "private_subnets" {
type = list(string)
description = "List of private subnets for this VPC."
default = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
}
variable "public_subnets" {
type = list(string)
description = "List of public subnets for this VPC."
default = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
}
variable "enable_nat_gateway" {
type = bool
default = false
}
variable "single_nat_gateway" {
type = bool
default = true
}
variable "one_nat_gateway_per_az" {
type = bool
default = true
}
variable "enable_dns_hostnames" {
type = bool
default = true
}
variable "prefix" {
type = string
description = "Prefix for resources."
}