Control: DMS replication instances should be configured to use multiple Availability Zones
Description
This control checks whether an AWS Database Migration Service (AWS DMS) replication instance is configured to use multiple Availability Zones (Multi-AZ deployment). The control fails if the AWS DMS replication instance isn't configured to use a Multi-AZ deployment.
Usage
Run the control in your terminal:
powerpipe control run aws_compliance.control.dms_replication_instance_multiple_az_enabledSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_compliance.control.dms_replication_instance_multiple_az_enabled --shareSQL
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_idfrom aws_dms_replication_instance;