Commit d3480c56 by Bruce Pennypacker

fixed documentation & added rename example

parent 9abca424
...@@ -211,7 +211,7 @@ options: ...@@ -211,7 +211,7 @@ options:
new_instance_name: new_instance_name:
description: description:
- Name to rename an instance to. Used only when command=modify. - Name to rename an instance to. Used only when command=modify.
required: true required: false
default: null default: null
aliases: [] aliases: []
requirements: [ "boto" ] requirements: [ "boto" ]
...@@ -248,6 +248,13 @@ EXAMPLES = ''' ...@@ -248,6 +248,13 @@ EXAMPLES = '''
command=facts command=facts
instance_name=new_database instance_name=new_database
register: new_database_facts register: new_database_facts
# Rename an instance and wait for the change to take effect
- rds: >
command=modify
instance_name=new_database
new_instance_name=renamed_database
wait=yes
''' '''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment