mirror of
https://github.com/ansible/awx.git
synced 2026-01-25 00:11:23 -03:30
Include gce inventory changes from https://github.com/ansible/ansible/pull/11299
This commit is contained in:
parent
0c6459cd07
commit
356d1b7134
@ -221,7 +221,7 @@ class GceInventory(object):
|
||||
'gce_image': inst.image,
|
||||
'gce_machine_type': inst.size,
|
||||
'gce_private_ip': inst.private_ips[0],
|
||||
'gce_public_ip': inst.public_ips[0],
|
||||
'gce_public_ip': inst.public_ips[0] if len(inst.public_ips) >= 1 else None,
|
||||
'gce_name': inst.name,
|
||||
'gce_description': inst.extra['description'],
|
||||
'gce_status': inst.extra['status'],
|
||||
@ -230,7 +230,7 @@ class GceInventory(object):
|
||||
'gce_metadata': md,
|
||||
'gce_network': net,
|
||||
# Hosts don't have a public name, so we add an IP
|
||||
'ansible_ssh_host': inst.public_ips[0]
|
||||
'ansible_ssh_host': inst.public_ips[0] if len(inst.public_ips) >= 1 else inst.private_ips[0]
|
||||
}
|
||||
|
||||
def get_instance(self, instance_name):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user