Reputation: 25870
I have tried creating a VPC twice now and both times it's errored out with:
There was an error creating your VPC: Unable to find main route table for vpc: vpc-02de8520acae014f4
I've tried using the following settings:
I can't seem to find any more info beyond that error. This is a new AWS account and I've never created anything else in here. I'm on an account that has the AdministratorAccess policy.
Upvotes: 1
Views: 2679
Reputation: 129
This error will result if you had existing subnets using the same exact private IP address. The private IP address consists of your vpc ip address + subnet ip address. IF this is in fact the case, the subnets will not be created and the public ip address will obviously not be associated with the non created public subnet. The error message doesn't reflect the real issue though, not sure why AWS can't return a better one. In fact, if you look at the new vpc details, you will see a route table attached to it, so the error message is completely off
Upvotes: 2