vaults_access_policies
Creates, updates, deletes, gets or lists a vaults_access_policies
resource.
Overview
Name | vaults_access_policies |
Type | Resource |
Id | azure.key_vault.vaults_access_policies |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
update | replace | resourceGroupName , vaultName , operationKind , subscriptionId , data__properties | Update access policies in a key vault in the specified subscription. |
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.
Name | Datatype | Description |
---|---|---|
operationKind | string | Name of the operation |
resourceGroupName | string | The name of the Resource Group to which the vault belongs. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
vaultName | string | Name of the vault |
REPLACE
examples
- update
Update access policies in a key vault in the specified subscription.
REPLACE azure.key_vault.vaults_access_policies
SET
data__properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND vaultName = '{{ vaultName }}' --required
AND operationKind = '{{ operationKind }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
AND data__properties = '{{ properties }}' --required
RETURNING
id,
name,
location,
properties,
type;