private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.azure_active_directory.private_link_resources |
Fields
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | The unique resource identifier of the Azure AD PrivateLink Policy. |
name | text | The name of the Azure AD PrivateLink Policy. |
groupName | text | field from the properties object |
group_id | text | field from the properties object |
policyName | text | field from the properties object |
required_members | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The type of Azure resource. |
Name | Datatype | Description |
---|---|---|
id | string | The unique resource identifier of the Azure AD PrivateLink Policy. |
name | string | The name of the Azure AD PrivateLink Policy. |
properties | object | Properties of a private link resource. |
type | string | The type of Azure resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | groupName, policyName, resourceGroupName, subscriptionId | Gets the private link resources that need to be created for a policy of AzureAD. |
list_by_private_link_policy | SELECT | policyName, resourceGroupName, subscriptionId | Gets 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.
- vw_private_link_resources
- private_link_resources
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.azure_active_directory.private_link_resources
WHERE policyName = '{{ policyName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';