-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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/openstack: Remove Default Security Group Rules #11466
provider/openstack: Remove Default Security Group Rules #11466
Conversation
This commit removes the default security group rules that are automatically created when a security group is created. These rules are usually permissive egress rules which makes it difficult to add more strict egress security group rules.
Hi @jtopjian Do you think this is backwards incompatible? This will cause a change on everyones infrastructure right? P. |
@stack72 It shouldn't. Only the |
You are correct :) I didn't pay close enough attention it seems Thanks P. |
This commit removes the default security group rules that are automatically created when a security group is created. These rules are usually permissive egress rules which makes it difficult to add more strict egress security group rules.
No worries at all! I would have rather double-checked than gotten myself into a sticky situation :) |
- terraform has changed the default behavior for security group creation. See: hashicorp/terraform#11466 Signed-off-by: Beyhan Veli <beyhan.veli@sap.com> Signed-off-by: Felix Riegger <felix.riegger@sap.com>
- terraform has changed the default behavior for security group creation. See: hashicorp/terraform#11466 Signed-off-by: Beyhan Veli <beyhan.veli@sap.com>
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. |
This commit removes the default security group rules that are automatically
created when a security group is created. These rules are usually
permissive egress rules which makes it difficult to add more strict egress
security group rules.
Fixes #9799