turbot/oci_insights

Query: vcn_network_security_group_ingress_ssh

Usage

powerpipe query oci_insights.query.vcn_network_security_group_ingress_ssh

SQL

with non_compliant_rules as (
select
id,
count(*) as num_noncompliant_rules
from
oci_core_network_security_group,
jsonb_array_elements(rules) as r
where
r ->> 'direction' = 'INGRESS'
and r ->> 'sourceType' = 'CIDR_BLOCK'
and r ->> 'source' = '0.0.0.0/0'
and (
r ->> 'protocol' = 'all'
or (
(r -> 'tcpOptions' -> 'destinationPortRange' ->> 'min') :: integer <= 22
and (r -> 'tcpOptions' -> 'destinationPortRange' ->> 'max') :: integer >= 22
)
)
and lifecycle_state <> 'TERMINATED'
group by
id
)
select
case
when non_compliant_rules.id is null then 'Restricted'
else 'Unrestricted'
end as value,
'Ingress SSH' as label,
case
when non_compliant_rules.id is null then 'ok'
else 'alert'
end as type
from
oci_core_network_security_group as nsg
left join non_compliant_rules on non_compliant_rules.id = nsg.id
where
nsg.id = $1
and nsg.lifecycle_state <> 'TERMINATED';

Dashboards

The query is used in the dashboards: