vw_ip_groups
Creates, updates, deletes, gets or lists a vw_ip_groups
resource.
Overview
Name | vw_ip_groups |
Type | View |
Id | azure.network.vw_ip_groups |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
etag as etag,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.ipAddresses') as "ip_addresses",
JSON_EXTRACT(properties, '$.firewalls') as "firewalls",
JSON_EXTRACT(properties, '$.firewallPolicies') as "firewall_policies",
subscriptionId,
resourceGroupName,
ipGroupsName
FROM azure.network.ip_groups
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
etag as etag,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.ipAddresses') as "ip_addresses",
json_extract_path_text(properties, '$.firewalls') as "firewalls",
json_extract_path_text(properties, '$.firewallPolicies') as "firewall_policies",
subscriptionId,
resourceGroupName,
ipGroupsName
FROM azure.network.ip_groups
WHERE subscriptionId = 'replace-me';