forked from DeLoWaN/terraform-aws-gcp-vpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
68 lines (58 loc) · 1.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
variable "name" {
description = "Name applied to this instance"
type = string
default = ""
}
variable "customer" {
description = "Customer applied to this instance"
type = string
default = ""
}
variable "environment" {
description = "Environment applied to this instance"
type = string
default = ""
}
variable "tags" {
description = "Tags applied to this instance"
type = map(string)
default = {
"ManagedBy" = "terraform"
}
}
# bellow are specific modules variables
variable "gcp_network" {
description = "Network name for GCP"
type = string
}
variable "gcp_subnetworks" {
description = "Routing table ID for AWS. By default it will take all the subnetworks in the VPC"
type = list(object({
name = string
region = string
}))
default = null
}
variable "aws_vpc" {
description = "VPC ID for AWS"
type = string
}
variable "aws_route_tables_ids" {
description = "Routing table ID for AWS. By default it will take all the route tables in the VPC"
type = list(string)
default = null
}
variable "gcp_asn" {
description = "Google Cloud side ASN"
type = number
}
variable "cloud_dns_route_propagation" {
description = "Wether you want to add GCP Cloud DNS (35.199.192.0/19) to propagated routes, so that you can use Cloud DNS zone forwarding to AWS"
type = bool
default = false
}
variable "ha_vpn" {
description = "Creates an HA VPN with two tunnels"
type = bool
default = false
}