From 5a0364de52f03ba7070ac6a0a9bbcb4476013bf5 Mon Sep 17 00:00:00 2001 From: Anil Chandra <120965339+acx1729@users.noreply.github.com> Date: Mon, 23 Dec 2024 10:59:21 -0500 Subject: [PATCH] updating common column --- steampipe-plugin-render/render/common_column.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/steampipe-plugin-render/render/common_column.go b/steampipe-plugin-render/render/common_column.go index 9ff66261..502b1928 100644 --- a/steampipe-plugin-render/render/common_column.go +++ b/steampipe-plugin-render/render/common_column.go @@ -3,6 +3,7 @@ package render import ( "context" "encoding/json" + "github.com/turbot/steampipe-plugin-sdk/v5/grpc/proto" "github.com/turbot/steampipe-plugin-sdk/v5/plugin" "github.com/turbot/steampipe-plugin-sdk/v5/plugin/transform" @@ -11,9 +12,9 @@ import ( func commonColumns(c []*plugin.Column) []*plugin.Column { return append(c, []*plugin.Column{ { - Name: "platform_account_id", + Name: "platform_integration_id", Type: proto.ColumnType_STRING, - Description: "The Platform Account ID in which the resource is located.", + Description: "The Platform Integration ID in which the resource is located.", Transform: transform.FromField("IntegrationID"), }, {