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