forked from chime/terraform-aws-alternat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
53 lines (45 loc) · 1.41 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
52
53
variable "alternat_instance_type" {
description = "The instance type to use for the Alternat instances."
type = string
default = "t4g.medium"
}
variable "aws_region" {
description = "The AWS region to deploy to."
type = string
default = "us-west-2"
}
variable "create_nat_gateways" {
description = "Whether to create NAT Gateways using the Alternat module."
type = bool
default = true
}
variable "enable_nat_gateway" {
description = "Whether to create NAT Gateways using the VPC module."
type = bool
default = false
}
variable "nat_instance_key_name" {
description = "The name of the key pair to use for the NAT instances."
type = string
default = ""
}
variable "private_subnets" {
description = "List of private subnets to use in the example VPC."
type = list(string)
default = ["10.10.20.0/24", "10.10.21.0/24"]
}
variable "public_subnets" {
description = "List of public subnets to use in the example VPC. Alternat instnaces and NAT Gateways reside in these subnets."
type = list(string)
default = ["10.10.0.0/24", "10.10.1.0/24"]
}
variable "vpc_cidr" {
description = "The CIDR block to use for the example VPC."
type = string
default = "10.10.0.0/16"
}
variable "vpc_name" {
description = "The name to use for the example VPC."
type = string
default = "alternat-example"
}