Skip to content

Commit

Permalink
update changelog and sanity fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jatorcasso committed May 10, 2022
1 parent 00d5de0 commit f0c3b67
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ minor_changes:
- rds_instance_snapshot - add check mode support, integration tests, and copy_db_snapshot functionality (https://github.com/ansible-collections/community.aws/pull/1078).

bugfixes:
- return 'tags' in response data - previously returned 'tag_list' from RDS client (https://github.com/ansible-collections/community.aws/pull/1078).
- don't require `db_instance_identifier` on state = present (https://github.com/ansible-collections/community.aws/pull/1078).
2 changes: 1 addition & 1 deletion plugins/modules/rds_instance_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,4 +385,4 @@ def main():


if __name__ == '__main__':
main()
main()
Original file line number Diff line number Diff line change
Expand Up @@ -498,10 +498,8 @@
- name: Delete the existing RDS instance without creating a final snapshot
rds_instance:
state: absent
instance_id: "{{ item }}"
instance_id: "{{ instance_id }}"
skip_final_snapshot: True
wait: false
register: _result_delete_instance
ignore_errors: true
loop:
- "{{ instance_id }}"

0 comments on commit f0c3b67

Please sign in to comment.