Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.key_vault.private_link_resources

Fields

NameDatatypeDescription
idstringFully qualified identifier of the key vault resource.
namestringName of the key vault resource.
locationstringAzure location of the key vault resource.
propertiesobjectProperties of a private link resource.
tagsobjectTags assigned to the key vault resource.
typestringResource type of the key vault resource.

Methods

NameAccessible byRequired ParamsDescription
list_by_vaultSELECTresourceGroupName, subscriptionId, vaultNameGets 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 }}';