Skip to content

Commit

Permalink
fix: fix wrappers
Browse files Browse the repository at this point in the history
  • Loading branch information
artaasadi committed Nov 10, 2024
1 parent a3ee37e commit 5e07cad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions provider/describer/appconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package describer
import (
"context"
"fmt"
"github.com/opengovern/og-describer-aws/pkg/sdk/models"

"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/appconfig"
Expand Down
4 changes: 2 additions & 2 deletions provider/describer/glue.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ func glueCatalogTableHandle(ctx context.Context, client *lakeformation.Client, t
params := &lakeformation.GetResourceLFTagsInput{
CatalogId: table.CatalogId,
ShowAssignedLFTags: aws.Bool(true),
Resource: &lakeformationTypes.models.Resource, {
Table: &lakeformationTypes.Tablemodels.Resource{
Resource: &lakeformationTypes.Resource{
Table: &lakeformationTypes.TableResource{
CatalogId: table.CatalogId,
DatabaseName: table.DatabaseName,
Name: table.Name,
Expand Down
4 changes: 2 additions & 2 deletions provider/describer/waf.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"fmt"
"strings"

"github.com/turbot/steampipe-plugin-sdk/v5/plugin"
"github.com/opengovern/og-describer-aws/pkg/sdk/models"
"github.com/turbot/steampipe-plugin-sdk/v5/plugin"

"github.com/aws/smithy-go"

Expand Down Expand Up @@ -1267,7 +1267,7 @@ func wAFRuleHandle(ctx context.Context, cfg aws.Config, roleId string) (models.R
return models.Resource{}, err
}
tags = &waf.ListTagsForResourceOutput{
TagInfoForResource: &waftypes.TagInfoFormodels.Resource{},
TagInfoForResource: &waftypes.TagInfoForResource{},
}
}

Expand Down

0 comments on commit 5e07cad

Please sign in to comment.