Pass network argument to add_ips_to_server

The `network` argument needs to be passed through `add_ips_to_server`
so that the default value can be properly overridden from ansible.
This commit is contained in:
Timothy R. Chavez 2015-12-13 09:25:34 -08:00 committed by Matt Clay
parent 1ae765d61f
commit 2ef913a288

View file

@ -155,8 +155,9 @@ def main():
if state == 'present': if state == 'present':
server = cloud.add_ips_to_server( server = cloud.add_ips_to_server(
server=server, ips=floating_ip_address, reuse=reuse, server=server, ips=floating_ip_address, ip_pool=network,
fixed_address=fixed_address, wait=wait, timeout=timeout) reuse=reuse, fixed_address=fixed_address, wait=wait,
timeout=timeout)
fip_address = cloud.get_server_public_ip(server) fip_address = cloud.get_server_public_ip(server)
# Update the floating IP status # Update the floating IP status
f_ip = _get_floating_ip(cloud, fip_address) f_ip = _get_floating_ip(cloud, fip_address)