-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
42 lines (34 loc) · 1.3 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
# ------------------------------------------------------------------------------
# Variables
# ------------------------------------------------------------------------------
variable "customer_gateway_bgp_asn" {
description = "The customer (remote) gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN)."
}
variable "customer_gateway_ip" {
description = "The IP address of the customer (remote) gateway's Internet-routable external interface."
}
variable "name_prefix" {
description = "A prefix used for naming resources."
}
variable "private_subnet_count" {
description = "The number of private subnets the VPC has"
}
variable "private_subnets_route_table_ids" {
description = "The id(s) of the private aws_route_table(s) to propagate routes into."
type = "list"
}
variable "public_subnets_route_table_id" {
description = "The id of the public aws_route_table to propagate routes into."
}
variable "tags" {
description = "A map of tags (key-value pairs) passed to resources."
type = "map"
default = {}
}
variable "vpc_id" {
description = "The VPC ID."
}
variable "amazon_side_asn" {
description = "The Autonomous System Number (ASN) for the Amazon side of the specific VPN Gateway to retrieve. Default provided is a valid private ASN"
default = "64951"
}