turbot/steampipe-mod-ibm-insights

Dashboard: IBM Security Group Detail

This dashboard answers the following questions for each security group:

  • How is the security group configured?
  • What tags are applied?
  • Which resources is it associated to?
  • What are the inbound and outbound rules configured?
This dashboard contains 5 cards, 2 flows, 1 input and 5 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 Security Group Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
t ->> 'name' as "Name",
t ->> 'id' as "ID",
t ->> 'resource_type' as "Resource Type",
t ->> 'href' as "HREF"
from
ibm_is_security_group,
jsonb_array_elements(targets) as t
where
crn = $1;
{
"$1": "crn"
}

Tags