From a63109d227c0bc31942a196f197a5fe3eff1fbc5 Mon Sep 17 00:00:00 2001 From: Yonas Dresen Date: Tue, 30 Aug 2022 12:18:22 +0200 Subject: [PATCH] 494 fix inventory parsing when no labels available --- plugins/inventory/gcp_compute.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/inventory/gcp_compute.py b/plugins/inventory/gcp_compute.py index 1f31e02..154b691 100644 --- a/plugins/inventory/gcp_compute.py +++ b/plugins/inventory/gcp_compute.py @@ -231,7 +231,8 @@ class GcpInstance(object): for order in self.hostname_ordering: name = None if order.startswith("labels."): - name = self.json[u"labels"].get(order[7:]) + if "labels" in self.json: + name = self.json[u"labels"].get(order[7:]) elif order == "public_ip": name = self._get_publicip() elif order == "private_ip":