Include computer_name in VM instance facts (#62566)
This commit is contained in:
parent
153a322f54
commit
41bfd2bf0e
1 changed files with 2 additions and 1 deletions
|
@ -221,7 +221,8 @@ class AzureRMVirtualMachineScaleSetVMInfo(AzureRMModuleBase):
|
|||
'name': d.get('name', None),
|
||||
'provisioning_state': d.get('provisioning_state', None),
|
||||
'power_state': power_state,
|
||||
'vm_id': d.get('vm_id', None)
|
||||
'vm_id': d.get('vm_id', None),
|
||||
'computer_name': d.get('os_profile').get('computer_name', None)
|
||||
}
|
||||
return d
|
||||
|
||||
|
|
Loading…
Reference in a new issue