mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fix attribute test
This commit is contained in:
parent
c7e7b6c9e3
commit
edcb27b052
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable):
|
||||||
|
|
||||||
server['name'] = vm.NAME
|
server['name'] = vm.NAME
|
||||||
server['id'] = vm.ID
|
server['id'] = vm.ID
|
||||||
if vm.HISTORY_RECORDS.HISTORY[-1]:
|
if vm.HISTORY_RECORDS.HISTORY:
|
||||||
server['host'] = vm.HISTORY_RECORDS.HISTORY[-1].HOSTNAME
|
server['host'] = vm.HISTORY_RECORDS.HISTORY[-1].HOSTNAME
|
||||||
server['LABELS'] = labels
|
server['LABELS'] = labels
|
||||||
server['v4_first_ip'] = self._get_vm_ipv4(vm)
|
server['v4_first_ip'] = self._get_vm_ipv4(vm)
|
||||||
|
|
Loading…
Reference in a new issue