From e41a9d39331ee9ff79863f18cba66490c76a1507 Mon Sep 17 00:00:00 2001 From: cbruno10 Date: Wed, 31 Jan 2024 00:46:57 -0500 Subject: [PATCH] Add limiter tags for aws_s3_bucket GetBucketLocation hydrate function (#2066) --- aws/table_aws_s3_bucket.go | 4 ++++ 1 file changed, 4 insertions(+) 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},