Fix reuse argument documentation

This commit is contained in:
Davide Guerri 2015-06-26 14:53:48 +01:00
parent e3d9b51cbb
commit 304e187a52

View file

@ -81,19 +81,19 @@ requirements: ["shade"]
EXAMPLES = ''' EXAMPLES = '''
# Assign a floating IP to the fist interface of `cattle001` from an exiting # Assign a floating IP to the fist interface of `cattle001` from an exiting
# external network or nova pool. If a free floating IP is already allocated to # external network or nova pool. A new floating IP from the first available
# the project, it is reused; if not, a new one is created. # external network is allocated to the project.
- os_floating_ip: - os_floating_ip:
cloud: dguerri cloud: dguerri
server: cattle001 server: cattle001
# Assign a new floating IP to the instance fixed ip `192.0.2.3` of # Assign a new floating IP to the instance fixed ip `192.0.2.3` of
# `cattle001`. A new floating IP from the external network (or nova pool) # `cattle001`. If a free floating IP is already allocated to the project, it is
# ext_net is created. # reused; if not, a new one is created.
- os_floating_ip: - os_floating_ip:
cloud: dguerri cloud: dguerri
state: present state: present
reuse: false reuse: yes
server: cattle001 server: cattle001
network: ext_net network: ext_net
fixed_address: 192.0.2.3 fixed_address: 192.0.2.3