Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.azure_active_directory.private_link_resources

Fields

NameDatatypeDescription
idtextThe unique resource identifier of the Azure AD PrivateLink Policy.
nametextThe name of the Azure AD PrivateLink Policy.
groupNametextfield from the properties object
group_idtextfield from the properties object
policyNametextfield from the properties object
required_memberstextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe type of Azure resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTgroupName, policyName, resourceGroupName, subscriptionIdGets the private link resources that need to be created for a policy of AzureAD.
list_by_private_link_policySELECTpolicyName, resourceGroupName, subscriptionIdGets the private link resources that need to be created for a policy of AzureAD.

SELECT examples

Gets the private link resources that need to be created for a policy of AzureAD.

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