turbot/aws_insights

Query: rds_clusters_for_rds_db_cluster_snapshot

Usage

powerpipe query aws_insights.query.rds_clusters_for_rds_db_cluster_snapshot

SQL

select
c.arn as rds_cluster_arn
from
aws_rds_db_cluster as c
join aws_rds_db_cluster_snapshot as s on s.db_cluster_identifier = c.db_cluster_identifier
where
s.arn = $1;