turbot/steampipe-mod-aws-compliance

Control: Redshift clusters should have Multi-AZ deployments enabled

Description

This control checks whether multiple Availability Zones (Multi-AZ) deployments are enabled for an Amazon Redshift cluster. The control fails if Multi-AZ deployments aren't enabled for the Amazon Redshift cluster.

Usage

Run the control in your terminal:

powerpipe control run aws_compliance.control.redshift_cluster_multiple_az_enabled

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run aws_compliance.control.redshift_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_redshift_cluster;

Tags