private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.key_vault.private_link_resources |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the key vault resource. |
name | string | Name of the key vault resource. |
location | string | Azure location of the key vault resource. |
properties | object | Properties of a private link resource. |
tags | object | Tags assigned to the key vault resource. |
type | string | Resource type of the key vault resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_vault | SELECT | resourceGroupName, subscriptionId, vaultName | Gets the private link resources supported for the key vault. |
SELECT
examples
Gets the private link resources supported for the key vault.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.key_vault.private_link_resources
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';