turbot/steampipe-mod-oci-insights

Dashboard: OCI VCN Security List Detail

This dashboard answers the following questions for each security list:

  • How is the security list configured?
  • What tags are applied?
  • What are the ingress and egress rules?
  • What relationships does the security list have with other resources?
This dashboard contains 2 cards, 1 graph, 1 input and 4 tables.

Usage

Install the mod:

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

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select OCI VCN Security List Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run oci_insights.dashboard.vcn_security_list_detail --share

Queries

This dashboard uses the the following queries:
select
r ->> 'protocol' as "Protocol",
r ->> 'destination' as "Destination",
r ->> 'isStateless' as "Stateless"
from
oci_core_security_list,
jsonb_array_elements(egress_security_rules) as r
where
id = $1
and lifecycle_state <> 'TERMINATED';

Tags