turbot/steampipe-mod-aws-compliance

Control: CloudFront distributions should have a default root object configured

Description

This control checks whether an AWS CloudFront distribution is configured to return a specific object that is the default root object. The control fails if the CloudFront distribution does not have a default root object configured.

Usage

Run the control in your terminal:

powerpipe control run aws_compliance.control.cloudfront_distribution_default_root_object_configured

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run aws_compliance.control.cloudfront_distribution_default_root_object_configured --share

SQL

This control uses a named query:

select
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
, region, account_id
from
aws_cloudfront_distribution;

Tags