-
Notifications
You must be signed in to change notification settings - Fork 397
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
rds_instance does not remove VPC security groups until you add another one #385
Comments
pauby
changed the title
rds_instance does not remove vpc security groups until you add one
rds_instance does not remove VPC security groups until you add another one
Feb 2, 2021
Files identified in the description: If these files are inaccurate, please update the |
alinabuzachis
added a commit
to alinabuzachis/community.aws
that referenced
this issue
Mar 25, 2021
alinabuzachis
added a commit
to alinabuzachis/community.aws
that referenced
this issue
Mar 25, 2021
alinabuzachis
added a commit
to alinabuzachis/community.aws
that referenced
this issue
Mar 25, 2021
alinabuzachis
added a commit
to alinabuzachis/community.aws
that referenced
this issue
Mar 25, 2021
alinabuzachis
added a commit
to alinabuzachis/community.aws
that referenced
this issue
Mar 25, 2021
tremble
pushed a commit
that referenced
this issue
Apr 7, 2021
* rds_instance: Add purge_security_groups feature for vpc_security_groups_ids. * Fixes: #385
alinabuzachis
added a commit
to alinabuzachis/community.aws
that referenced
this issue
Jul 19, 2021
* rds_instance: Add purge_security_groups feature for vpc_security_groups_ids. * Fixes: ansible-collections#385
alinabuzachis
added a commit
to alinabuzachis/community.aws
that referenced
this issue
Jul 19, 2021
* rds_instance: Add purge_security_groups feature for vpc_security_groups_ids. * Fixes: ansible-collections#385
danielcotton
pushed a commit
to danielcotton/community.aws
that referenced
this issue
Nov 23, 2021
* rds_instance: Add purge_security_groups feature for vpc_security_groups_ids. * Fixes: ansible-collections#385
alinabuzachis
pushed a commit
to alinabuzachis/community.aws
that referenced
this issue
May 25, 2022
…llections#387) s3_bucket - improve documentation of policy parameter SUMMARY This pull requests improves the documentation of the policy parameter in the s3_bucket module. It documents how to ensure the absence of a policy. Fixes ansible-collections#385 ISSUE TYPE Docs Pull Request COMPONENT NAME s3_bucket Reviewed-by: Jill R <None> Reviewed-by: Moritz Wagner <None> Reviewed-by: None <None> Reviewed-by: Mark Chappell <None>
abikouo
pushed a commit
to abikouo/community.aws
that referenced
this issue
Oct 24, 2023
* rds_instance: Add purge_security_groups feature for vpc_security_groups_ids. * Fixes: ansible-collections#385 This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections@cd32e65
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SUMMARY
When using
community.aws.rds_instance
you can add security group ids using thevpc_security_group_ids
parameter and this is reflected in the VPC security groups on the RDS instance. However if you remove a group the VPC security groups on the RDS instance is not updated. If you add a group after this, the old group is removed and the new group is added.ISSUE TYPE
COMPONENT NAME
community.aws.rds_instance
ANSIBLE VERSION
CONFIGURATION
OS / ENVIRONMENT
AWS RDS instance
STEPS TO REPRODUCE
If I remove "sg_1" nothing is updated on the DB instance. If I add "sg_4" so you have "sg_2", "sg_3" and "sg_4", then "sg_1" is then removed and "sg_4" is added.
EXPECTED RESULTS
I expect "sg_1" to be removed when I remove it from the list.
ACTUAL RESULTS
Nothing happens to "sg_1" until I add "sg_4" to the list.
The text was updated successfully, but these errors were encountered: