fix: check for labels in json dict

This commit is contained in:
John Jarvis 2023-08-18 13:55:50 +02:00
parent 84503b7930
commit 3714be2936
No known key found for this signature in database

View file

@ -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":