Skip to main content

configuration_stores_keys

Creates, updates, deletes, gets or lists a configuration_stores_keys resource.

Overview

Nameconfiguration_stores_keys
TypeResource
Idazure.app_configuration.configuration_stores_keys

Fields

NameDatatypeDescription
idstringThe key ID.
namestringA name for the key describing its usage.
connectionStringstringA connection string that can be used by supporting clients for authentication.
lastModifiedstringThe last time any of the key's properties were modified.
readOnlybooleanWhether this key can only be used for read operations.
valuestringThe value of the key that is used for authentication purposes.

Methods

NameAccessible byRequired ParamsDescription
listSELECTconfigStoreName, resourceGroupName, subscriptionIdLists the access key for the specified configuration store.

SELECT examples

Lists the access key for the specified configuration store.

SELECT
id,
name,
connectionString,
lastModified,
readOnly,
value
FROM azure.app_configuration.configuration_stores_keys
WHERE configStoreName = '{{ configStoreName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';