turbot/steampipe-mod-aws-compliance

Control: RDS DB clusters should be configured for multiple Availability Zones

Description

This control checks whether high availability is enabled for your RDS DB clusters. RDS DB clusters should be configured for multiple Availability Zones to ensure availability of the data that is stored.

Usage

Run the control in your terminal:

powerpipe control run aws_compliance.control.rds_db_cluster_multiple_az_enabled

Snapshot and share results via Turbot Pipes:

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

SQL

This control uses a named query:

select
arn as resource,
case
when multi_az then 'ok'
else 'alarm'
end as status,
case
when multi_az then title || ' Multi-AZ enabled.'
else title || ' Multi-AZ disabled.'
end as reason
, region, account_id
from
aws_rds_db_cluster;

Tags