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 69de83e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
minor_changes:
- rds_instance_snapshot - add copy_db_snapshot functionality (https://github.com/ansible-collections/community.aws/pull/1078).

bugfixes:
- don't require `db_instance_identifier` on state = present (https://github.com/ansible-collections/community.aws/pull/1078).

This file was deleted.

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 69de83e

Please sign in to comment.