turbot/aws_insights

Query: source_ebs_volumes_for_ebs_snapshot

Usage

powerpipe query aws_insights.query.source_ebs_volumes_for_ebs_snapshot

SQL

select
v.arn as volume_arn
from
aws_ebs_snapshot as s,
aws_ebs_volume as v
where
s.volume_id = v.volume_id
and s.snapshot_id = $1;