mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 02:10:27 -07:00
fix: check for labels in json dict
This commit is contained in:
parent
84503b7930
commit
3714be2936
1 changed files with 2 additions and 1 deletions
|
@ -237,7 +237,8 @@ class GcpInstance(object):
|
|||
for order in self.hostname_ordering:
|
||||
name = None
|
||||
if order.startswith("labels."):
|
||||
name = self.json["labels"].get(order[7:])
|
||||
if "labels" in self.json:
|
||||
name = self.json["labels"].get(order[7:])
|
||||
elif order == "public_ip":
|
||||
name = self._get_publicip()
|
||||
elif order == "private_ip":
|
||||
|
|
Loading…
Add table
Reference in a new issue