-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (38 loc) · 1.11 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
variable "requestor_vpc_id" {
type = string
description = "The VPC ID of the requesting peer."
}
variable "acceptor_vpc_id" {
type = string
description = "The VPC ID of the accepting peer."
}
variable "requestor_private_zone_id" {
type = string
description = "The private zone ID of the requesting peer VPC."
default = null
}
variable "acceptor_private_zone_id" {
type = string
description = "The private zone ID of the accepting peer VPC."
default = null
}
variable "requestor_private_zone_name" {
type = string
description = "The private zone name of the requesting peer VPC."
default = null
}
variable "acceptor_private_zone_name" {
type = string
description = "The private zone name of the accepting peer VPC."
default = null
}
variable "auto_accept_peering" {
type = bool
description = "Whether or not to automatically accept the peering request from the requestor VPC."
default = true
}
variable "tags" {
default = {}
description = "Tags to apply to the peering connection"
type = map(string)
}