turbot/aws_insights

Query: ebs_snapshot_input

Usage

powerpipe query aws_insights.query.ebs_snapshot_input

Steampipe Tables

SQL

select
title as label,
snapshot_id as value,
json_build_object(
'account_id', account_id,
'region', region,
'volume_id', volume_id,
'state', state
) as tags
from
aws_ebs_snapshot
order by
title;