turbot/aws_insights

Query: rds_db_clusters_for_rds_db_instance

Usage

powerpipe query aws_insights.query.rds_db_clusters_for_rds_db_instance

SQL

select
c.arn as cluster_arn
from
aws_rds_db_instance as i
join aws_rds_db_cluster as c on i.db_cluster_identifier = c.db_cluster_identifier
where
i.arn = $1;