Merge pull request #2681 from timrchavez/pass_network_argument
Pass network argument to add_ips_to_server
This commit is contained in:
commit
fd59dccdd7
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue