configuration_stores_keys
Creates, updates, deletes, gets or lists a configuration_stores_keys
resource.
Overview
Name | configuration_stores_keys |
Type | Resource |
Id | azure.app_configuration.configuration_stores_keys |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The key ID. |
name | string | A name for the key describing its usage. |
connectionString | string | A connection string that can be used by supporting clients for authentication. |
lastModified | string | The last time any of the key's properties were modified. |
readOnly | boolean | Whether this key can only be used for read operations. |
value | string | The value of the key that is used for authentication purposes. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | configStoreName, resourceGroupName, subscriptionId | Lists 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 }}';