turbot/azure_insights

Query: virtual_network_input

Usage

powerpipe query azure_insights.query.virtual_network_input

SQL

select
n.title as label,
lower(n.id) as value,
json_build_object(
'subscription', s.display_name,
'resource_group', n.resource_group,
'region', n.region
) as tags
from
azure_virtual_network as n,
azure_subscription as s
where
lower(n.subscription_id) = lower(s.subscription_id)
order by
n.title;