-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
feat: Add toggle to disable default route creation for public route tables #1188
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
base: master
Are you sure you want to change the base?
Conversation
…route feat: Add toggle to disable public default route
…route Make default opposite to match existing vars
This PR has been automatically marked as stale because it has been open 30 days |
Please do not close. Can we have some action on this? or a decission if this is going to be merged or you would merge #1190 ? |
This PR has been automatically marked as stale because it has been open 30 days |
Please do not close |
this would solve #1187 |
I'll take a look at the Network Firewall integration options today |
Description
This changes introduces a variable public_enable_default_route so a default route for public subnets is not created when set to false . This enables the user to create its own default route to other gateways than Internet Gateway (IGW)
Motivation and Context
It fixes the problem of not being able to use ex. Network Firewall and enables the use case where users will need to change default route to something else than the IGW
How Has This Been Tested?
I have tested my changes from a module using the VPC. Setting the public_enable_default_route flag to false -> default route is not created for public subnet route tables
removing the public_enable_default_route flag from the settings passed to the module -> The default route to IGW is created for each public subnet route table
pre-commit run -a
on my pull request