sample
turbot/flowpipe-samples/add-s3-bucket-cost-center-tags

Trigger: List S3 Buckets Without Cost Center Tag

Find S3 buckets missing the cost_center tag key.

Query

select
name,
arn,
account_id,
region,
sp_connection_name as conn
from
aws_s3_bucket
where
tags ->> 'cost_center' is null
limit
4

Schedule

* * * * *