You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/vpc_peering/variables.tf
+23-5Lines changed: 23 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,22 @@
1
-
variable"accepter_vpc_id" {
1
+
variable"vpc_peering_accepter_vpc_id" {
2
2
type=string
3
3
description="Specify the unique identifier of the VPC that will act as the Acceptor in the VPC peering connection."
4
4
default=""
5
5
}
6
6
7
-
variable"accepter_vpc_region" {
7
+
variable"vpc_peering_accepter_vpc_region" {
8
8
type=string
9
9
description="Provide the AWS region where the Acceptor VPC is located. This helps in identifying the correct region for establishing the VPC peering connection."
10
10
default=""
11
11
}
12
12
13
-
variable"requester_vpc_id" {
13
+
variable"vpc_peering_requester_vpc_id" {
14
14
type=string
15
15
description="Specify the unique identifier of the VPC that will act as the Reqester in the VPC peering connection."
16
16
default=""
17
17
}
18
18
19
-
variable"requester_vpc_region" {
19
+
variable"vpc_peering_requester_vpc_region" {
20
20
type=string
21
21
description="Specify the AWS region where the Requester VPC resides. It ensures the correct region is used for setting up the VPC peering."
22
22
default=""
@@ -34,8 +34,26 @@ variable "accepter_name" {
34
34
default=""
35
35
}
36
36
37
-
variable"peering_enabled" {
37
+
variable"vpc_peering_enabled" {
38
38
type=bool
39
39
description="Set this variable to true if you want to create the VPC peering connection. Set it to false if you want to skip the creation process."
40
40
default=true
41
41
}
42
+
43
+
variable"vpc_peering_multi_account_enabled" {
44
+
type=bool
45
+
description="Set this variable to true if you want to create the VPC peering connection between reagions. Set it to false if you want to skip the creation process."
46
+
default=true
47
+
}
48
+
49
+
variable"vpc_peering_requester_aws_profile" {
50
+
type=string
51
+
description="Provide the AWS profile where the requester VPC is located."
52
+
default=""
53
+
}
54
+
55
+
variable"vpc_peering_accepter_aws_profile" {
56
+
type=string
57
+
description="Provide the AWS profile where the accepter VPC is located."
0 commit comments