-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathmain.tf
20 lines (16 loc) · 806 Bytes
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
provider "aws" {
region = var.region
}
module "vpc_peering_cross_account" {
source = "../../"
requester_aws_assume_role_arn = var.requester_aws_assume_role_arn
requester_region = var.requester_region
requester_vpc_id = var.requester_vpc_id
requester_allow_remote_vpc_dns_resolution = var.requester_allow_remote_vpc_dns_resolution
accepter_enabled = var.accepter_enabled
accepter_aws_assume_role_arn = var.accepter_aws_assume_role_arn
accepter_region = var.accepter_region
accepter_vpc_id = var.accepter_vpc_id
accepter_allow_remote_vpc_dns_resolution = var.accepter_allow_remote_vpc_dns_resolution
context = module.this.context
}