Skip to content

Commit 4db35b5

Browse files
authored
Merge pull request #231556 from nkondamudi/patch-176
Updated the regions based on capacity
2 parents 117e317 + 863144e commit 4db35b5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

articles/key-vault/managed-hsm/quick-create-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags: azure-resource-manager
77
ms.service: key-vault
88
ms.subservice: managed-hsm
99
ms.topic: quickstart
10-
ms.date: 11/14/2022
10+
ms.date: 03/21/2023
1111
ms.author: mbaldwin
1212
ms.custom: mode-api, devx-track-azurecli
1313
ms.devlang: azurecli
@@ -58,11 +58,11 @@ You need to provide following inputs to create a Managed HSM resource:
5858
- Azure location.
5959
- A list of initial administrators.
6060

61-
The following example creates an HSM named **ContosoMHSM**, in the resource group **ContosoResourceGroup**, residing in the **West US 3** location, with **the current signed in user** as the only administrator, with **7 days retention period** for soft-delete. Read more about [Managed HSM soft-delete](soft-delete-overview.md)
61+
The following example creates an HSM named **ContosoMHSM**, in the resource group **ContosoResourceGroup**, residing in the **East US 2** location, with **the current signed in user** as the only administrator, with **7 days retention period** for soft-delete. Read more about [Managed HSM soft-delete](soft-delete-overview.md)
6262

6363
```azurecli-interactive
6464
oid=$(az ad signed-in-user show --query id -o tsv)
65-
az keyvault create --hsm-name "ContosoMHSM" --resource-group "ContosoResourceGroup" --location "westus3" --administrators $oid --retention-days 7
65+
az keyvault create --hsm-name "ContosoMHSM" --resource-group "ContosoResourceGroup" --location "eastus2" --administrators $oid --retention-days 7
6666
```
6767

6868
> [!NOTE]

articles/key-vault/managed-hsm/quick-create-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create and retrieve attributes of a managed key in Azure Key Vault – Az
33
description: Quickstart showing how to set and retrieve a managed key from Azure Key Vault using Azure PowerShell
44
author: msmbaldwin
55
ms.author: mbaldwin
6-
ms.date: 11/14/2022
6+
ms.date: 03/21/2023
77
ms.topic: quickstart
88
ms.service: key-vault
99
ms.subservice: keys
@@ -17,7 +17,7 @@ In this quickstart, you will create and activate an Azure Key Vault Managed HSM
1717

1818
If you do not have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
1919

20-
The service is available in limited regions – To learn more about availability, please see [Azure Dedicated HSM purshase options](https://azure.microsoft.com/pricing/details/azure-dedicated-hsm).
20+
The service is available in limited regions – To learn more about availability, please see [Azure Dedicated HSM purchase options](https://azure.microsoft.com/pricing/details/azure-dedicated-hsm).
2121

2222
[!INCLUDE [cloud-shell-try-it.md](../../../includes/cloud-shell-try-it.md)]
2323

@@ -61,7 +61,7 @@ Use the Azure PowerShell [New-AzKeyVaultManagedHsm](/powershell/module/az.keyvau
6161
> Each Managed HSM must have a unique name. Replace \<your-unique-managed-hsm-name\> with the name of your Managed HSM in the following examples.
6262
6363
- Resource group name: **myResourceGroup**.
64-
- The location: **West US 3**.
64+
- The location: **East US 2**.
6565
- Your principal ID: Pass the Azure Active Directory principal ID that you obtained in the last section to the "Administrator" parameter.
6666

6767
```azurepowershell-interactive

articles/key-vault/managed-hsm/quick-create-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Quickstart showing how to create Azure an Azure Key Vault Managed H
44
services: key-vault
55
author: msmbaldwin
66
ms.author: mbaldwin
7-
ms.date: 09/22/2022
7+
ms.date: 03/21/2023
88
ms.topic: quickstart
99
ms.service: key-vault
1010
ms.subservice: managed-hsm
@@ -63,7 +63,7 @@ You can now deploy the ARM template:
6363

6464
- **Subscription**: Select an Azure subscription.
6565
- **Resource group**: Select **Create new**, enter "myResourceGroup" as the name, and then select **OK**.
66-
- **Location**: Select a location. For example, **West US 3**.
66+
- **Location**: Select a location. For example, **East US 2**.
6767
- **managedHSMName**: Enter a name for your Managed HSM.
6868
- **Tenant ID**: The template function automatically retrieves your tenant ID; don't change the default value. If there is no value, enter the Tenant ID that you retrieved above.
6969
- **initialAdminObjectIds**: Enter the Object ID that you retrieved above.

0 commit comments

Comments
 (0)