mhsm_private_link_resources
Creates, updates, deletes, gets or lists a mhsm_private_link_resources
resource.
Overview
Name | mhsm_private_link_resources |
Type | Resource |
Id | azure.key_vault.mhsm_private_link_resources |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The Azure Resource Manager resource ID for the managed HSM Pool. |
name | string | The name of the managed HSM Pool. |
identity | object | Managed service identity (system assigned and/or user assigned identities) |
location | string | The supported Azure location where the managed HSM Pool should be created. |
properties | object | Properties of a private link resource. |
sku | object | SKU details |
systemData | object | Metadata pertaining to creation and last modification of the key vault resource. |
tags | object | Resource tags |
type | string | The resource type of the managed HSM Pool. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_mhsm_resource | SELECT | name, resourceGroupName, subscriptionId | Gets the private link resources supported for the managed hsm pool. |
SELECT
examples
Gets the private link resources supported for the managed hsm pool.
SELECT
id,
name,
identity,
location,
properties,
sku,
systemData,
tags,
type
FROM azure.key_vault.mhsm_private_link_resources
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';