From 2195fd08718fefef9c6c735fc76f671d82ce7392 Mon Sep 17 00:00:00 2001 From: Christoph Hartmann Date: Wed, 4 Oct 2023 00:27:52 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20add=20missing=20okta=20runtime?= =?UTF-8?q?=20(#2072)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- providers/okta/provider/provider.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/providers/okta/provider/provider.go b/providers/okta/provider/provider.go index 8b4ed32b8f..cc13364cb9 100644 --- a/providers/okta/provider/provider.go +++ b/providers/okta/provider/provider.go @@ -163,10 +163,11 @@ func (s *Service) connect(req *plugin.ConnectReq, callback plugin.ProviderCallba func (s *Service) detect(asset *inventory.Asset, conn *connection.OktaConnection) error { asset.Name = "Okta Organization " + conn.OrganizationID() asset.Platform = &inventory.Platform{ - Name: "okta-org", - Family: []string{"okta"}, - Kind: "api", - Title: "Okta Organization", + Name: "okta-org", + Family: []string{"okta"}, + Kind: "api", + Title: "Okta Organization", + Runtime: "okta", } id, err := conn.Identifier()