vw_configuration_stores
Creates, updates, deletes, gets or lists a vw_configuration_stores
resource.
Overview
Name | vw_configuration_stores |
Type | View |
Id | azure.app_configuration.vw_configuration_stores |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
identity as identity,
sku as sku,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.creationDate') as "creation_date",
JSON_EXTRACT(properties, '$.endpoint') as "endpoint",
JSON_EXTRACT(properties, '$.encryption') as "encryption",
JSON_EXTRACT(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
JSON_EXTRACT(properties, '$.disableLocalAuth') as "disable_local_auth",
JSON_EXTRACT(properties, '$.softDeleteRetentionInDays') as "soft_delete_retention_in_days",
JSON_EXTRACT(properties, '$.enablePurgeProtection') as "enable_purge_protection",
JSON_EXTRACT(properties, '$.dataPlaneProxy') as "data_plane_proxy",
JSON_EXTRACT(properties, '$.createMode') as "create_mode",
subscriptionId,
resourceGroupName,
configStoreName
FROM azure.app_configuration.configuration_stores
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
identity as identity,
sku as sku,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.creationDate') as "creation_date",
json_extract_path_text(properties, '$.endpoint') as "endpoint",
json_extract_path_text(properties, '$.encryption') as "encryption",
json_extract_path_text(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
json_extract_path_text(properties, '$.publicNetworkAccess') as "public_network_access",
json_extract_path_text(properties, '$.disableLocalAuth') as "disable_local_auth",
json_extract_path_text(properties, '$.softDeleteRetentionInDays') as "soft_delete_retention_in_days",
json_extract_path_text(properties, '$.enablePurgeProtection') as "enable_purge_protection",
json_extract_path_text(properties, '$.dataPlaneProxy') as "data_plane_proxy",
json_extract_path_text(properties, '$.createMode') as "create_mode",
subscriptionId,
resourceGroupName,
configStoreName
FROM azure.app_configuration.configuration_stores
WHERE subscriptionId = 'replace-me';