mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-22 19:00:13 -04:00
16 lines
426 B
SQL
16 lines
426 B
SQL
select
|
|
-- Required Columns
|
|
arn as resource,
|
|
case
|
|
when default_root_object = '' then 'alarm'
|
|
else 'ok'
|
|
end as status,
|
|
case
|
|
when default_root_object = '' then title || ' default root object not configured.'
|
|
else title || ' default root object configured.'
|
|
end as reason,
|
|
-- Additional Dimensions
|
|
region,
|
|
account_id
|
|
from
|
|
aws_cloudfront_distribution; |