turbot/aws_insights

Query: s3_bucket_logging_table

Usage

powerpipe query aws_insights.query.s3_bucket_logging_table

Steampipe Tables

SQL

select
b.name as "Name",
case
when b.logging -> 'TargetBucket' is not null then 'Enabled'
else null
end as "Logging",
(b.logging ->> 'TargetBucket') || (b.logging ->> 'TargetPrefix') as "Target",
b.logging -> 'TargetGrants' as "Grants",
a.title as "Account",
b.account_id as "Account ID",
b.region as "Region",
b.arn as "ARN"
from
aws_s3_bucket as b,
aws_account as a
where
b.account_id = a.account_id
order by
b.name;

Dashboards

The query is used in the dashboards: