Skip to content

Commit

Permalink
fix: update resource es structure
Browse files Browse the repository at this point in the history
  • Loading branch information
artaasadi committed Nov 10, 2024
1 parent 19fa937 commit 67f8106
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package azure

import (
"context"
opengovernance "github.com/opengovern/og-describer-azure/pkg/sdk/es"
"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 @@ -14,10 +13,10 @@ func tableAzureAppManagedEnvironments(_ context.Context) *plugin.Table {
Description: "Azure App ManagedEnvironments",
Get: &plugin.GetConfig{
KeyColumns: plugin.SingleColumn("id"), //TODO: change this to the primary key columns in model.go
Hydrate: opengovernance.GetAppManagedEnvironment,
//Hydrate: opengovernance.GetAppManagedEnvironment,
},
List: &plugin.ListConfig{
Hydrate: opengovernance.ListAppManagedEnvironment,
//Hydrate: opengovernance.ListAppManagedEnvironment,
},
Columns: azureKaytuColumns([]*plugin.Column{
{
Expand Down

0 comments on commit 67f8106

Please sign in to comment.