Skip to content

Commit

Permalink
fix: fix common columns
Browse files Browse the repository at this point in the history
  • Loading branch information
artaasadi committed Nov 12, 2024
1 parent 1bf2045 commit f288afe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions steampipe-plugin-aws/aws/common_columns.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,20 +257,20 @@ func commonAwsKaytuColumns() []*plugin.Column {
{
Name: "account_id",
Type: proto.ColumnType_STRING,
Transform: transform.FromField("Metadata.AccountID"),
Transform: transform.FromField("Metadata.SourceID"),
Description: "The AWS Account ID in which the resource is located.",
},
{
Name: "og_account_id",
Type: proto.ColumnType_STRING,
Description: "The Platform Account ID in which the resource is located.",
Transform: transform.FromField("Metadata.SourceID"),
Transform: transform.FromField("IntegrationID"),
},
{
Name: "og_resource_id",
Type: proto.ColumnType_STRING,
Description: "The unique ID of the resource in opengovernance.",
Transform: transform.FromField("ID"),
Transform: transform.FromField("PlatformID"),
},
{
Name: "og_metadata",
Expand Down

0 comments on commit f288afe

Please sign in to comment.