Skip to content

Commit

Permalink
Update Examples with FQCN (ansible-collections#67)
Browse files Browse the repository at this point in the history
Updated module examples with FQCN

Signed-off-by: Abhijeet Kasurde <[email protected]>

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections@98173ae
  • Loading branch information
Akasurde authored and goneri committed Sep 21, 2022
1 parent 7817f69 commit c19cc83
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/rds_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@
'''

EXAMPLES = '''
# Create snapshot
- rds_snapshot:
- name: Create snapshot
community.aws.rds_snapshot:
db_instance_identifier: new-database
db_snapshot_identifier: new-database-snapshot
# Delete snapshot
- rds_snapshot:
- name: Delete snapshot
community.aws.rds_snapshot:
db_snapshot_identifier: new-database-snapshot
state: absent
'''
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/rds_snapshot_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@
'''

EXAMPLES = '''
# Get information about an snapshot
- rds_snapshot_info:
- name: Get information about an snapshot
community.aws.rds_snapshot_info:
db_snapshot_identifier: snapshot_name
register: new_database_info
# Get all RDS snapshots for an RDS instance
- rds_snapshot_info:
- name: Get all RDS snapshots for an RDS instance
community.aws.rds_snapshot_info:
db_instance_identifier: helloworld-rds-master
'''

Expand Down

0 comments on commit c19cc83

Please sign in to comment.