vw_dedicated_hsms
Creates, updates, deletes, gets or lists a vw_dedicated_hsms
resource.
Overview
Name | vw_dedicated_hsms |
Type | View |
Id | azure.hardware_security_modules.vw_dedicated_hsms |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
sku as sku,
zones as zones,
tags as tags,
JSON_EXTRACT(properties, '$.networkProfile') as "network_profile",
JSON_EXTRACT(properties, '$.managementNetworkProfile') as "management_network_profile",
JSON_EXTRACT(properties, '$.stampId') as "stamp_id",
JSON_EXTRACT(properties, '$.statusMessage') as "status_message",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
name
FROM azure.hardware_security_modules.dedicated_hsms
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
sku as sku,
zones as zones,
tags as tags,
json_extract_path_text(properties, '$.networkProfile') as "network_profile",
json_extract_path_text(properties, '$.managementNetworkProfile') as "management_network_profile",
json_extract_path_text(properties, '$.stampId') as "stamp_id",
json_extract_path_text(properties, '$.statusMessage') as "status_message",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
name
FROM azure.hardware_security_modules.dedicated_hsms
WHERE subscriptionId = 'replace-me';