Skip to content

Commit

Permalink
Merge pull request hashicorp#40440 from hashicorp/s-aws_s3tables_name…
Browse files Browse the repository at this point in the history
…space

r/aws_s3tables_namespace: Fix sweeper
  • Loading branch information
ewbankkit authored Dec 4, 2024
2 parents 3a4ae7e + a594646 commit b8f2326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/s3tables/sweep.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func sweepNamespaces(ctx context.Context, client *conns.AWSClient) ([]sweep.Swee
for _, namespace := range page.Namespaces {
sweepResources = append(sweepResources, framework.NewSweepResource(newResourceNamespace, client,
framework.NewAttribute("table_bucket_arn", aws.ToString(bucket.Arn)),
framework.NewAttribute(names.AttrNamespace, namespace.Namespace),
framework.NewAttribute(names.AttrNamespace, namespace.Namespace[0]),
))
}
}
Expand Down

0 comments on commit b8f2326

Please sign in to comment.