diff --git a/aws/table_aws_s3_bucket.go b/aws/table_aws_s3_bucket.go index 6f047c065..69ee05999 100644 --- a/aws/table_aws_s3_bucket.go +++ b/aws/table_aws_s3_bucket.go @@ -25,6 +25,10 @@ func tableAwsS3Bucket(_ context.Context) *plugin.Table { // anyway just to get the creation_date which is only available via the // list call. HydrateConfig: []plugin.HydrateConfig{ + { + Func: getBucketLocation, + Tags: map[string]string{"service": "s3", "action": "GetBucketLocation"}, + }, { Func: getBucketIsPublic, Depends: []plugin.HydrateFunc{getBucketLocation},