cloudstack: add instance_name alias internal name to returns in cs_instance
This commit is contained in:
parent
4da1a5de9e
commit
17504f0a26
1 changed files with 7 additions and 0 deletions
|
@ -331,6 +331,11 @@ hypervisor:
|
|||
returned: success
|
||||
type: string
|
||||
sample: KVM
|
||||
instance_name:
|
||||
description: Internal name of the instance (ROOT admin only).
|
||||
returned: success
|
||||
type: string
|
||||
sample: i-44-3992-VM
|
||||
'''
|
||||
|
||||
import base64
|
||||
|
@ -719,6 +724,8 @@ class AnsibleCloudStackInstance(AnsibleCloudStack):
|
|||
self.result['project'] = instance['project']
|
||||
if 'hypervisor' in instance:
|
||||
self.result['hypervisor'] = instance['hypervisor']
|
||||
if 'instancename' in instance:
|
||||
self.result['instance_name'] = instance['instancename']
|
||||
if 'publicip' in instance:
|
||||
self.result['public_ip'] = instance['public_ip']
|
||||
if 'passwordenabled' in instance:
|
||||
|
|
Loading…
Reference in a new issue