turbot/aws_insights

Query: cloudwatch_log_groups_for_redshift_cluster

Usage

powerpipe query aws_insights.query.cloudwatch_log_groups_for_redshift_cluster

SQL

select
g.arn as log_group_arn
from
aws_redshift_cluster as c,
aws_cloudwatch_log_group as g
where
g.title like '%' || c.title || '%'
and c.arn = $1;