Skip to content
New issue

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

provider/aws: Additional error checking to VPC Peering conn #3490

Merged
merged 1 commit into from
Oct 13, 2015

Conversation

catsby
Copy link
Contributor

@catsby catsby commented Oct 13, 2015

Add additional error checking to VPC Peering connection, to try and catch/prevent #3145 and #2690

Unfortunately I have not been able to reproduce either using this config:

resource "aws_vpc" "foo" {
        cidr_block = "10.0.0.0/16"
}

resource "aws_vpc" "bar" {
        cidr_block = "10.1.0.0/16"
}

resource "aws_vpc_peering_connection" "foo" {
        vpc_id = "${aws_vpc.foo.id}"
        peer_vpc_id = "${aws_vpc.bar.id}"
        tags {
            foo = "bar"
        }
    auto_accept = true
}

Regardless, there were some places in the code that could use some additional checks

@phinze
Copy link
Contributor

phinze commented Oct 13, 2015

LGTM

catsby added a commit that referenced this pull request Oct 13, 2015
provider/aws: Additional error checking to VPC Peering conn
@catsby catsby merged commit c0c81dc into master Oct 13, 2015
@catsby catsby deleted the b-aws-vpc-peering-checks branch October 13, 2015 17:55
@ghost
Copy link

ghost commented Apr 30, 2020

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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@ghost ghost locked and limited conversation to collaborators Apr 30, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants