turbot/aws_insights

Query: rds_db_snapshots_for_rds_db_instance

Usage

powerpipe query aws_insights.query.rds_db_snapshots_for_rds_db_instance

SQL

with rds_db_instance as (
select
arn,
resource_id,
region,
account_id
from
aws_rds_db_instance
where
account_id = split_part($1, ':', 5)
and region = split_part($1, ':', 4)
and arn = $1
order by
arn,
resource_id,
region,
account_id
), rds_db_snapshot as (
select
arn,
dbi_resource_id,
region,
account_id
from
aws_rds_db_snapshot
order by
arn,
dbi_resource_id,
region,
account_id
)
select
s.arn as snapshot_arn
from
rds_db_instance as i
join rds_db_snapshot as s on s.dbi_resource_id = i.resource_id;