mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Perform safe normalization of nics to use uuid
This commit is contained in:
parent
3fb3e7e6dc
commit
b2d24aba61
1 changed files with 6 additions and 2 deletions
|
@ -215,6 +215,10 @@ def rax_asg(module, cooldown=300, disk_config=None, files={}, flavor=None,
|
||||||
nics.extend(cnw.get_server_networks(network))
|
nics.extend(cnw.get_server_networks(network))
|
||||||
|
|
||||||
for nic in nics:
|
for nic in nics:
|
||||||
|
# pyrax is currently returning net-id, but we need uuid
|
||||||
|
# this check makes this forward compatible for a time when
|
||||||
|
# pyrax uses uuid instead
|
||||||
|
if nic.get('net-id'):
|
||||||
nic.update(uuid=nic['net-id'])
|
nic.update(uuid=nic['net-id'])
|
||||||
del nic['net-id']
|
del nic['net-id']
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue