forked from grem11n/terraform-aws-vpc-peering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
50 lines (41 loc) · 1.55 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
variable "peer_vpc_id" {
description = "Peer VPC ID: string"
default = ""
}
variable "this_vpc_id" {
description = "This VPC ID: string"
default = ""
}
variable "auto_accept_peering" {
description = "Auto accept peering connection: bool"
default = false
}
variable "tags" {
description = "Tags: map"
type = "map"
default = {}
}
variable "peer_dns_resolution" {
description = "Indicates whether a local VPC can resolve public DNS hostnames to private IP addresses when queried from instances in a peer VPC"
default = false
}
variable "peer_link_to_peer_classic" {
description = "Indicates whether a local ClassicLink connection can communicate with the peer VPC over the VPC Peering Connection"
default = false
}
variable "peer_link_to_local_classic" {
description = "Indicates whether a local VPC can communicate with a ClassicLink connection in the peer VPC over the VPC Peering Connection"
default = false
}
variable "this_dns_resolution" {
description = "Indicates whether a local VPC can resolve public DNS hostnames to private IP addresses when queried from instances in a this VPC"
default = false
}
variable "this_link_to_peer_classic" {
description = "Indicates whether a local ClassicLink connection can communicate with the this VPC over the VPC Peering Connection"
default = false
}
variable "this_link_to_local_classic" {
description = "Indicates whether a local VPC can communicate with a ClassicLink connection in the this VPC over the VPC Peering Connection"
default = false
}