Merge pull request #2681 from timrchavez/pass_network_argument

Pass network argument to add_ips_to_server
This commit is contained in:
Brian Coca 2016-01-13 17:32:34 -05:00
commit fd59dccdd7

View file

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