standard
turbot/aws_compliance

Trigger: Detect & correct RDS DB instances with Multi-AZ disabled

Detect RDS DB instances with Multi-AZ disabled and then enable Multi-AZ.

Query

select
concat(
db_instance_identifier,
' [',
account_id,
'/',
region,
']'
) as title,
db_instance_identifier,
region,
sp_connection_name as conn
from
aws_rds_db_instance
where
engine not ilike '%aurora-mysql%'
and engine not ilike '%aurora-postgresql%'
and not multi_az;

Schedule

15m

Tags

category = Compliance
mod = aws
service = AWS/RDS