turbot/aws_insights

Query: rds_db_instances_for_rds_db_cluster

Usage

powerpipe query aws_insights.query.rds_db_instances_for_rds_db_cluster

SQL

select
i.arn as instance_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
c.arn = $1;