vw_security_policies_interfaces
Creates, updates, deletes, gets or lists a vw_security_policies_interfaces
resource.
Overview
Name | vw_security_policies_interfaces |
Type | View |
Id | azure.service_networking.vw_security_policies_interfaces |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.policyType') as "policy_type",
JSON_EXTRACT(properties, '$.wafPolicy') as "waf_policy",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
trafficControllerName,
securityPolicyName
FROM azure.service_networking.security_policies_interfaces
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND trafficControllerName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.policyType') as "policy_type",
json_extract_path_text(properties, '$.wafPolicy') as "waf_policy",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
trafficControllerName,
securityPolicyName
FROM azure.service_networking.security_policies_interfaces
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND trafficControllerName = 'replace-me';