We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AWS has announced support for VPC peering across regions: https://aws.amazon.com/about-aws/whats-new/2017/11/announcing-support-for-inter-region-vpc-peering/
Prerequisite: aws-sdk-go v1.12.38 (#2500)
terraform 0.10+ terraform-provider-aws 1.5.0
aws_vpc_peering_connection
Optional peer_region attribute available and utilized.
peer_region
resource "aws_vpc_peering_connection" "foo" { peer_owner_id = "${var.peer_owner_id}" peer_region = "us-east-1" peer_vpc_id = "${aws_vpc.bar.id}" vpc_id = "${aws_vpc.foo.id}" }
http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVpcPeeringConnection.html
The text was updated successfully, but these errors were encountered:
AWS SDK functionality is in v1.12.38, which is has a pull request now: #2500
Sorry, something went wrong.
This is fixed by #2508.
This has been released in terraform-provider-aws version 1.7.0. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!
No branches or pull requests
AWS has announced support for VPC peering across regions: https://aws.amazon.com/about-aws/whats-new/2017/11/announcing-support-for-inter-region-vpc-peering/
Prerequisite: aws-sdk-go v1.12.38 (#2500)
Terraform Version
Affected Resource(s)
aws_vpc_peering_connection
Expected Behavior
Optional
peer_region
attribute available and utilized.References
http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVpcPeeringConnection.html
The text was updated successfully, but these errors were encountered: