-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvariables.tf
57 lines (45 loc) · 1.05 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
variable "name" {
description = "Name of the peering connection"
}
variable "auto_accept_peering" {
description = "Whether to auto-accept the peering request"
default = true
}
variable "tags" {
type = map(string)
description = "Tags to apply"
}
####################
## Requester Info ##
####################
variable "this_vpc_id" {
description = "VPC ID of the requestor"
}
variable "this_cidr_block" {
description = "CIDR block of the requestor"
}
variable "this_route_table_ids" {
description = "Route table IDs of the requestor"
type = list(any)
default = []
}
###################
## Accepter Info ##
###################
variable "peer_vpc_id" {
description = "VPC ID of the peer"
}
variable "peer_region" {
description = "Region of the peer"
}
variable "peer_profile" {
description = "Profile of the peer"
}
variable "peer_cidr_block" {
description = "CIDR block of the peer"
}
variable "peer_route_table_ids" {
description = "Route table IDs of the peer"
type = list(any)
default = []
}