turbot/gcp_insights

Query: compute_firewalls_for_compute_network

Usage

powerpipe query gcp_insights.query.compute_firewalls_for_compute_network

SQL

select
f.id :: text as firewall_id
from
gcp_compute_firewall f,
gcp_compute_network n
where
f.network = n.self_link
and n.id = $1;