-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
78 lines (64 loc) · 1.59 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
69
70
71
72
73
74
75
76
77
78
variable "create_vpc_peering" {
description = "Should we create vpc pairing"
default = true
}
variable "owner_account_id" {
description = "AWS owner account ID"
default = ""
}
variable "vpc_peer_id" {
description = "Peer VPC ID"
default = ""
}
variable "vpc_id" {
description = "This VPC ID"
default = ""
}
variable "source_private_route_count" {
description = "A count of private route tables"
default = 0
}
variable "source_private_route_table_ids" {
type = "list"
description = "A list of private route tables"
default = []
}
variable "source_public_route_count" {
description = "A count of public route tables"
default = 0
}
variable "source_public_route_table_ids" {
type = "list"
description = "A list of public route tables"
default = []
}
variable "source_peer_cird_block" {
description = "Peer VPC CIDR block"
default = ""
}
variable "target_private_route_count" {
description = "A count of private route tables"
default = 0
}
variable "target_private_route_table_ids" {
type = "list"
description = "A list of private route tables"
default = []
}
variable "target_public_route_count" {
description = "A count of public route tables"
default = 0
}
variable "target_public_route_table_ids" {
type = "list"
description = "A list of public route tables"
default = []
}
variable "target_peer_cird_block" {
description = "Peer VPC CIDR block"
default = ""
}
variable "auto_accept_peering" {
description = "Auto accept peering connection"
default = false
}