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

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
idstringThe key ID.
namestringA name for the key describing its usage.
connectionStringstringA connection string that can be used by supporting clients for authentication.
lastModifiedstring (date-time)The 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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, configStoreName$skipTokenLists the access key for the specified configuration store.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
configStoreNamestringThe name of the configuration store.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$skipTokenstringA skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND configStoreName = '{{ configStoreName }}' -- required
AND $skipToken = '{{ $skipToken }}'
;