turbot/azure_insights

Query: network_interface_ip_configurations_details

Usage

powerpipe query azure_insights.query.network_interface_ip_configurations_details

Steampipe Tables

SQL

select
c ->> 'name' as "Name",
c -> 'properties' ->> 'primary' as "Primary",
c -> 'properties' ->> 'privateIPAddress' as "Private IP Address",
c -> 'properties' ->> 'privateIPAddressVersion' as "Private IP Address Version",
c -> 'properties' ->> 'privateIPAllocationMethod' as "Private IP Allocation Method",
c -> 'properties' -> 'subnet' ->> 'id' as "Subnet",
c ->> 'id' as "ID"
from
azure_network_interface,
jsonb_array_elements(ip_configurations) as c
where
lower(id) = $1
order by
c ->> 'name';

Dashboards

The query is used in the dashboards: