fix: check for labels in json dict when using them for hostnames

This commit is contained in:
Chris Hawk 2023-08-31 12:57:25 -07:00 committed by GitHub
commit 85603ae106
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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