Skip to content

Commit

Permalink
Rename rds_snapshot to rds_instance_snapshot (ansible-collections#783)
Browse files Browse the repository at this point in the history
Rename rds_snapshot to rds_instance_snapshot

SUMMARY

Rename rds_snapshot to rds_instance_snapshot since rds_snapshot only handles snapshotting of DB instances. A new module for snapshotting RDS clusters will be added in a future PR.

ISSUE TYPE


New Module Pull Request

COMPONENT NAME

rds_snapshot

Reviewed-by: Mark Chappell <None>
Reviewed-by: None <None>
  • Loading branch information
alinabuzachis authored Oct 28, 2021
1 parent b296616 commit 3a41188
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rds_snapshot.py → rds_instance_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

DOCUMENTATION = '''
---
module: rds_snapshot
module: rds_instance_snapshot
version_added: 1.0.0
short_description: manage Amazon RDS snapshots.
description:
Expand Down Expand Up @@ -66,12 +66,12 @@

EXAMPLES = '''
- name: Create snapshot
community.aws.rds_snapshot:
community.aws.rds_instance_snapshot:
db_instance_identifier: new-database
db_snapshot_identifier: new-database-snapshot
- name: Delete snapshot
community.aws.rds_snapshot:
community.aws.rds_instance_snapshot:
db_snapshot_identifier: new-database-snapshot
state: absent
'''
Expand Down

0 comments on commit 3a41188

Please sign in to comment.