Skip to main content

mhsm_regions

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

Overview

Namemhsm_regions
TypeResource
Idazure.key_vault.mhsm_regions

Fields

NameDatatypeDescription
namestringName of the geo replicated region.
isPrimarybooleanA boolean value that indicates whether the region is the primary region or a secondary region.
provisioningStatestringThe current provisioning state.

Methods

NameAccessible byRequired ParamsDescription
list_by_resourceSELECTname, resourceGroupName, subscriptionIdThe 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 }}';