vw_azure_firewalls
Creates, updates, deletes, gets or lists a vw_azure_firewalls
resource.
Overview
Name | vw_azure_firewalls |
Type | View |
Id | azure.network.vw_azure_firewalls |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
zones as zones,
etag as etag,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.applicationRuleCollections') as "application_rule_collections",
JSON_EXTRACT(properties, '$.natRuleCollections') as "nat_rule_collections",
JSON_EXTRACT(properties, '$.networkRuleCollections') as "network_rule_collections",
JSON_EXTRACT(properties, '$.ipConfigurations') as "ip_configurations",
JSON_EXTRACT(properties, '$.managementIpConfiguration') as "management_ip_configuration",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.threatIntelMode') as "threat_intel_mode",
JSON_EXTRACT(properties, '$.virtualHub') as "virtual_hub",
JSON_EXTRACT(properties, '$.firewallPolicy') as "firewall_policy",
JSON_EXTRACT(properties, '$.hubIPAddresses') as "hub_ip_addresses",
JSON_EXTRACT(properties, '$.ipGroups') as "ip_groups",
JSON_EXTRACT(properties, '$.sku') as "sku",
JSON_EXTRACT(properties, '$.additionalProperties') as "additional_properties",
JSON_EXTRACT(properties, '$.autoscaleConfiguration') as "autoscale_configuration",
subscriptionId,
resourceGroupName,
azureFirewallName
FROM azure.network.azure_firewalls
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
zones as zones,
etag as etag,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.applicationRuleCollections') as "application_rule_collections",
json_extract_path_text(properties, '$.natRuleCollections') as "nat_rule_collections",
json_extract_path_text(properties, '$.networkRuleCollections') as "network_rule_collections",
json_extract_path_text(properties, '$.ipConfigurations') as "ip_configurations",
json_extract_path_text(properties, '$.managementIpConfiguration') as "management_ip_configuration",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.threatIntelMode') as "threat_intel_mode",
json_extract_path_text(properties, '$.virtualHub') as "virtual_hub",
json_extract_path_text(properties, '$.firewallPolicy') as "firewall_policy",
json_extract_path_text(properties, '$.hubIPAddresses') as "hub_ip_addresses",
json_extract_path_text(properties, '$.ipGroups') as "ip_groups",
json_extract_path_text(properties, '$.sku') as "sku",
json_extract_path_text(properties, '$.additionalProperties') as "additional_properties",
json_extract_path_text(properties, '$.autoscaleConfiguration') as "autoscale_configuration",
subscriptionId,
resourceGroupName,
azureFirewallName
FROM azure.network.azure_firewalls
WHERE subscriptionId = 'replace-me';