-
Notifications
You must be signed in to change notification settings - Fork 97
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
RouteAlreadyExists: The route identified by 0.0.0.0/0 already exists #5
Comments
Anyone having time to implement a mitigation? Manual steps with g aws ec2 -- describe-route-tables --output=json --filters "Name=vpc-id,Values=vpc-123456" // Replace vpc-id by actual id
g aws ec2 -- delete-route --route-table-id=rtb-abcdef --destination-cidr-block=0.0.0.0/0 // Fetch route-table id related to the nat-gateway and replace it. |
Thx for reporting and indeed, a fix in TF or mitigation in G would be great, otherwise we suffer from it endlessly. |
Actually we found that the initial
The There are multiple existing issues about |
I am closing for now as is merged #38 . Please reopen if it still reproduces. |
We do often see provider-aws terraformer to fail during Shoot creation with error:
We see that the route is present in the provider, but it is missing in terraform.tfstate which make terraform try to create it and fail.
We see this since several terraform versions (0.12.9 - the current one, 0.11.14, and probably even an older one).
The text was updated successfully, but these errors were encountered: