turbot/steampipe-mod-aws-compliance

Control: Route 53 domains auto renew should be enabled

Description

This control ensures that AWS Route 53 Auto Renew feature is enabled to automatically renew your domain names as the expiration date approaches.

Usage

Run the control in your terminal:

powerpipe control run aws_compliance.control.route53_domain_auto_renew_enabled

Snapshot and share results via Turbot Pipes:

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

SQL

This control uses a named query:

select
arn as resource,
case
when auto_renew then 'ok'
else 'alarm'
end as status,
case
when auto_renew then title || ' auto renew enabled.'
else title || ' auto renew disabled.'
end as reason
, region, account_id
from
aws_route53_domain;

Tags