turbot/steampipe-mod-ibm-insights

Dashboard: IBM Block Storage Volume Detail

This dashboard answers the following questions for each volume:

  • How is the volume configured?
  • What tags are applied?
  • What instances is it attached to?
  • How is encryption configured?
This dashboard contains 3 cards, 1 input and 4 tables.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-ibm-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select IBM Block Storage Volume Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run ibm_insights.dashboard.ibm_blockstorage_volume_detail --share

Queries

This dashboard uses the the following queries:
select
a -> 'instance' ->> 'name' as "Instance Name",
a -> 'instance' ->> 'id' as "Instance ID",
a -> 'delete_volume_on_instance_delete' as "Delete Volume On Instance Delete",
a -> 'instance' ->> 'crn' as "Instance CRN"
from
ibm_is_volume as v,
jsonb_array_elements(volume_attachments) as a
where
v.crn = $1
order by
a -> 'instance' ->> 'name';
{
"$1": "crn"
}

Tags