Skip to content

Commit

Permalink
updating common column
Browse files Browse the repository at this point in the history
  • Loading branch information
acx1729 committed Dec 23, 2024
1 parent 9e4cd5a commit 5a0364d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions steampipe-plugin-render/render/common_column.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"),
},
{
Expand Down

0 comments on commit 5a0364d

Please sign in to comment.