turbot/digitalocean_insights

Query: target_snapshot_snapshots_for_blockstorage_volume

Usage

powerpipe query digitalocean_insights.query.target_snapshot_snapshots_for_blockstorage_volume

SQL

select
s.id as snapshot_urn
from
digitalocean_volume as v,
digitalocean_snapshot as s
where
s.resource_id = v.id
and s.resource_type = 'volume'
and v.urn = $1;