From 06330baac7069eec3c33f9b1d58da93fa1a1aaea Mon Sep 17 00:00:00 2001 From: vjeffrey Date: Fri, 22 Sep 2023 20:22:22 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20make=20gcp=20asset=20platform=20?= =?UTF-8?q?info=20match=20v8=20(#1857)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- providers/gcp/resources/discovery.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/providers/gcp/resources/discovery.go b/providers/gcp/resources/discovery.go index 69d1bc0b57..67f6dc393a 100644 --- a/providers/gcp/resources/discovery.go +++ b/providers/gcp/resources/discovery.go @@ -69,10 +69,10 @@ func Discover(runtime *plugin.Runtime) (*inventory.Inventory, error) { PlatformIds: []string{ connection.NewProjectPlatformID(gcpProject.Id.Data), }, - Name: gcpProject.Name.Data, + Name: "GCP Project " + gcpProject.Id.Data, Platform: &inventory.Platform{ Name: "gcp-project", - Title: "GCP Project " + gcpProject.Name.Data, + Title: "GCP Project", Runtime: "gcp", Kind: "gcp-object", },