mhsm_regions
Creates, updates, deletes, gets or lists a mhsm_regions
resource.
Overview
Name | mhsm_regions |
Type | Resource |
Id | azure.key_vault.mhsm_regions |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the geo replicated region. |
isPrimary | boolean | A boolean value that indicates whether the region is the primary region or a secondary region. |
provisioningState | string | The current provisioning state. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_resource | SELECT | name, resourceGroupName, subscriptionId | The List operation gets information about the regions associated with the managed HSM Pool. |
SELECT
examples
The List operation gets information about the regions associated with the managed HSM Pool.
SELECT
name,
isPrimary,
provisioningState
FROM azure.key_vault.mhsm_regions
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';