https://github.com/blackbird-cloud/terraform-aws-vpc-peering
A Terraform module which configures VPC peering between multiple VPCs in different accounts.
https://github.com/blackbird-cloud/terraform-aws-vpc-peering
aws terraform vpc
Last synced: 29 days ago
JSON representation
A Terraform module which configures VPC peering between multiple VPCs in different accounts.
- Host: GitHub
- URL: https://github.com/blackbird-cloud/terraform-aws-vpc-peering
- Owner: blackbird-cloud
- License: apache-2.0
- Created: 2024-05-31T13:34:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T15:36:01.000Z (over 1 year ago)
- Last Synced: 2025-03-02T03:15:23.439Z (over 1 year ago)
- Topics: aws, terraform, vpc
- Language: HCL
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform Aws Vpc Peering Module
A Terraform module which configures VPC peering between multiple VPCs in different accounts.
[](https://blackbird.cloud)
## Example
```hcl
module "requester" {
source = "blackbird-cloud/vpc-peering/aws//modules/vpc-peering-accepter"
version = "~> 1"
requester_vpc_id = "vpc-12345678"
accepter_vpc_id = "vpc-87654321"
accepter_account_id = "123456789012"
peer_region = "us-west-2"
accepter_cidr_block = "10.0.0.0/16"
route_table_ids = ["rtb-12345678", "rtb-87654321"]
}
module "accepter" {
source = "blackbird-cloud/vpc-peering/aws//modules/vpc-peering-accepter"
version = "~> 1"
vpc_peering_connection_id = module.requester.id
auto_accept = false
route_table_ids = ["rtb-12345678", "rtb-87654321"]
requester_cidr_block = "20.0.0.0/16"
}
```
## Modules
- [Vpc Peering Requester](./modules/vpc-peering-requester/README.md)
- [Vpc Peering Accepter](./modules/vpc-peering-accepter/README.md)
## About
We are [Blackbird Cloud](https://blackbird.cloud), Amsterdam based cloud consultancy, and cloud management service provider. We help companies build secure, cost efficient, and scale-able solutions.
Checkout our other :point\_right: [terraform modules](https://registry.terraform.io/namespaces/blackbird-cloud)
## Copyright
Copyright © 2017-2025 [Blackbird Cloud](https://blackbird.cloud)