Skip to content

Commit eb69772

Browse files
msmbaldwinCopilot
andcommitted
Update screenshots and fix accuracy issues
- Replace all 6 MHSM portal screenshots with captures from activated HSM - Add restore blade screenshot to backup-restore.md - Add local RBAC screenshot to role-management.md - Add overview screenshot to quick-create-portal.md - Standardize Settings navigation wording across all articles - Fix CLI examples: correct /deletedKeys/ URIs to /keys/ for backup/restore - Fix import command (was incorrectly using 'recover') - Add ai-usage: ai-assisted to disaster-recovery-guide.md and soft-delete-overview.md - Improve recovery.md Properties navigation wording Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 90d2238 commit eb69772

14 files changed

Lines changed: 29 additions & 22 deletions

‎articles/key-vault/managed-hsm/backup-restore.md‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ While the backup is in progress, the HSM might not operate at full throughput as
6666

6767
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
6868

69-
1. In the left menu, select **Backup**.
69+
1. In the left menu, under **Settings**, select **Backup**.
7070

7171
1. Provide the storage account and container details, then select **Start Backup** to initiate the backup.
7272

@@ -111,10 +111,12 @@ Restore is a long running operation but it immediately returns a Job ID. You can
111111

112112
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
113113

114-
1. In the left menu, select **Restore**.
114+
1. In the left menu, under **Settings**, select **Restore**.
115115

116116
1. Provide the storage account, container, and backup folder details, then initiate the restore.
117117

118+
:::image type="content" source="media/backup-restore/managed-hsm-restore-blade.png" alt-text="Screenshot of the Managed HSM Restore blade in the Azure portal.":::
119+
118120
# [Azure CLI](#tab/azure-cli)
119121

120122
### Restore HSM

‎articles/key-vault/managed-hsm/disaster-recovery-guide.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ ms.service: azure-key-vault
88
ms.subservice: managed-hsm
99
ms.custom: devx-track-azurecli
1010
ms.topic: tutorial
11-
ms.date: 01/30/2026
12-
11+
ms.date: 04/28/2026
12+
ai-usage: ai-assisted
1313
ms.author: mbaldwin
1414
---
1515

‎articles/key-vault/managed-hsm/key-management.md‎

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You also need:
4545

4646
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
4747

48-
1. Under **Settings** in the left menu, select **Keys**.
48+
1. In the left menu, under **Settings**, select **Keys**.
4949

5050
1. Select **Generate/Import** from the **Generate/Import/Restore Backup** dropdown.
5151

@@ -135,7 +135,7 @@ Add-AzKeyVaultKey -HsmName <hsm-name> -Name myaeskey -KeyType oct-HSM -Size 256
135135

136136
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
137137

138-
1. Under **Settings** in the left menu, select **Keys**.
138+
1. In the left menu, under **Settings**, select **Keys**.
139139

140140
1. Select the key you want to view. The portal displays the key's attributes, versions, and tags.
141141

@@ -169,7 +169,7 @@ Get-AzKeyVaultKey -HsmName <hsm-name> -Name myrsakey
169169

170170
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
171171

172-
1. Under **Settings** in the left menu, select **Keys**. The portal lists all keys in the Managed HSM.
172+
1. In the left menu, under **Settings**, select **Keys**. The portal lists all keys in the Managed HSM.
173173

174174
# [Azure CLI](#tab/azure-cli)
175175

@@ -201,7 +201,7 @@ Get-AzKeyVaultKey -HsmName <hsm-name>
201201

202202
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
203203

204-
1. Under **Settings** in the left menu, select **Keys**.
204+
1. In the left menu, under **Settings**, select **Keys**.
205205

206206
1. Select the key you want to delete.
207207

@@ -236,7 +236,7 @@ Remove-AzKeyVaultKey -HsmName <hsm-name> -Name myrsakey
236236

237237
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
238238

239-
1. Under **Settings** in the left menu, select **Keys**.
239+
1. In the left menu, under **Settings**, select **Keys**.
240240

241241
1. Select **Manage deleted keys** to view keys in the soft-deleted state.
242242

@@ -269,7 +269,7 @@ Get-AzKeyVaultKey -HsmName <hsm-name> -InRemovedState
269269

270270
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
271271

272-
1. Under **Settings** in the left menu, select **Keys**, then select **Manage deleted keys**.
272+
1. In the left menu, under **Settings**, select **Keys**, then select **Manage deleted keys**.
273273

274274
1. Select the deleted key you want to recover.
275275

@@ -307,7 +307,7 @@ Undo-AzKeyVaultKeyRemoval -HsmName <hsm-name> -Name myrsakey
307307

308308
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
309309

310-
1. Under **Settings** in the left menu, select **Keys**, then select **Manage deleted keys**.
310+
1. In the left menu, under **Settings**, select **Keys**, then select **Manage deleted keys**.
311311

312312
1. Select the deleted key you want to purge.
313313

@@ -359,7 +359,7 @@ az keyvault key backup --hsm-name <hsm-name> --name myrsakey --file myrsakey.bac
359359
## OR
360360
# Note the key name (myaeskey) in the URI
361361
362-
az keyvault key backup --id https://<hsm-name>.managedhsm.azure.net/deletedKeys/myrsakey --file myrsakey.backup
362+
az keyvault key backup --id https://<hsm-name>.managedhsm.azure.net/keys/myrsakey --file myrsakey.backup
363363
364364
```
365365

@@ -379,7 +379,7 @@ Backup-AzKeyVaultKey -HsmName <hsm-name> -Name myrsakey -OutputFile myrsakey.bac
379379

380380
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
381381

382-
1. Under **Settings** in the left menu, select **Keys**.
382+
1. In the left menu, under **Settings**, select **Keys**.
383383

384384
1. Select **Generate/Import/Restore Backup** and choose **Restore key from backup**.
385385

@@ -398,7 +398,7 @@ az keyvault key restore --hsm-name <hsm-name> --name myrsakey --file myrsakey.ba
398398
## OR
399399
# Note the key name (myaeskey) in the URI
400400
401-
az keyvault key restore --id https://<hsm-name>.managedhsm.azure.net/deletedKeys/myrsakey --file myrsakey.backup
401+
az keyvault key restore --id https://<hsm-name>.managedhsm.azure.net/keys/myrsakey --file myrsakey.backup
402402
403403
```
404404

@@ -431,7 +431,7 @@ az keyvault key import --hsm-name <hsm-name> --name myrsakey --pem-file mycert.k
431431
## OR
432432
# Note the key name (<key-name>) in the URI
433433
434-
az keyvault key recover --id https://<hsm-name>.managedhsm.azure.net/deletedKeys/<key-name> --pem-file mycert.key --password 'mypassword'
434+
az keyvault key import --id https://<hsm-name>.managedhsm.azure.net/keys/<key-name> --pem-file mycert.key --password 'mypassword'
435435
```
436436

437437
# [Azure PowerShell](#tab/azure-powershell)
-1.44 KB
Loading
-1.3 KB
Loading
-3.61 KB
Loading
-1.78 KB
Loading
-1.79 KB
Loading
9.05 KB
Loading

‎articles/key-vault/managed-hsm/multi-region-replication.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ In this diagram, the private endpoint is created in the UK South region only, th
9999

100100
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
101101

102-
1. In the left menu, select **Multi-Region Replication**.
102+
1. In the left menu, under **Settings**, select **Multi-Region Replication**.
103103

104104
1. Select **Add Region**, choose the target region, and confirm.
105105

@@ -112,7 +112,7 @@ In this diagram, the private endpoint is created in the UK South region only, th
112112

113113
1. In the [Azure portal](https://portal.azure.com), navigate to your Managed HSM resource.
114114

115-
1. In the left menu, select **Multi-Region Replication**.
115+
1. In the left menu, under **Settings**, select **Multi-Region Replication**.
116116

117117
1. Select the extended region you want to remove and confirm the deletion.
118118

0 commit comments

Comments
 (0)