Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.app_configuration.private_link_resources

Fields

NameDatatypeDescription
idtextThe resource ID.
nametextThe name of the resource.
configStoreNametextfield from the properties object
groupNametextfield from the properties object
group_idtextfield from the properties object
required_memberstextfield from the properties object
required_zone_namestextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTconfigStoreName, groupName, resourceGroupName, subscriptionIdGets a private link resource that need to be created for a configuration store.
list_by_configuration_storeSELECTconfigStoreName, resourceGroupName, subscriptionIdGets the private link resources that need to be created for a configuration store.

SELECT examples

Gets the private link resources that need to be created for a configuration store.

SELECT
id,
name,
configStoreName,
groupName,
group_id,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.app_configuration.vw_private_link_resources
WHERE configStoreName = '{{ configStoreName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';