Control: Aurora PostgreSQL DB clusters should publish logs to CloudWatch Logs
Description
This control checks whether an Amazon Aurora PostgreSQL DB cluster is configured to publish logs to Amazon CloudWatch Logs. The control fails if the Aurora PostgreSQL DB cluster isn't configured to publish PostgreSQL logs to CloudWatch Logs.
Usage
Run the control in your terminal:
powerpipe control run aws_compliance.control.rds_db_cluster_aurora_postgres_logging_enabledSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_compliance.control.rds_db_cluster_aurora_postgres_logging_enabled --shareSQL
This control uses a named query:
select  arn as resource,  case    when engine <> 'aurora-postgresql' then 'skip'    when enabled_cloudwatch_logs_exports ?& array ['postgresql'] then 'ok'    else 'alarm'  end as status,  case    when engine <> 'aurora-postgresql' then title || ' is of ' || engine || ' type.'    when enabled_cloudwatch_logs_exports ?& array ['postgresql'] then title || ' logging enabled.'    else title || ' logging disabled.'  end as reason    , region, account_idfrom  aws_rds_db_cluster;