turbot/gcp_insights

Query: compute_subnetworks_for_compute_network

Usage

powerpipe query gcp_insights.query.compute_subnetworks_for_compute_network

SQL

select
s.id :: text as subnetwork_id
from
gcp_compute_subnetwork s,
gcp_compute_network n
where
s.network = n.self_link
and n.id = $1;