Skip to content

Commit 33a7581

Browse files
Merge pull request #267707 from Blackmist/194403-fresh
194403 fresh
2 parents d3ef510 + eba36af commit 33a7581

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

articles/machine-learning/how-to-create-workspace-template.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ ms.service: machine-learning
77
ms.subservice: enterprise-readiness
88
ms.topic: how-to
99
ms.custom: devx-track-azurepowershell, devx-track-arm-template, devx-track-azurecli
10-
ms.author: deeikele
11-
author: deeikele
12-
ms.reviewer: larryfr
13-
ms.date: 11/09/2022
10+
ms.author: larryfr
11+
author: Blackmist
12+
ms.reviewer: deeikele
13+
ms.date: 02/29/2024
1414
#Customer intent: As a DevOps person, I need to automate or customize the creation of Azure Machine Learning by using templates.
1515
---
1616

@@ -39,7 +39,7 @@ For more information, see [Deploy an application with Azure Resource Manager tem
3939

4040
```json
4141
"type": "Microsoft.MachineLearningServices/workspaces",
42-
"apiVersion": "2020-03-01",
42+
"apiVersion": "2023-10-01",
4343
```
4444

4545
### Multiple workspaces in the same VNet
@@ -188,43 +188,43 @@ For more information, see [Customer-managed keys](concept-customer-managed-keys.
188188
>
189189
> For steps on creating the vault and key, see [Configure customer-managed keys](how-to-setup-customer-managed-keys.md).
190190
191-
__To get the values__ for the `cmk_keyvault` (ID of the Key Vault) and the `resource_cmk_uri` (key URI) parameters needed by this template, use the following steps:
191+
__To get the values__ for the `cmk_keyvault` (ID of the Key Vault) and the `resource_cmk_uri` (key URI) parameters needed by this template, use the following steps:
192192

193-
1. To get the Key Vault ID, use the following command:
193+
1. To get the Key Vault ID, use the following command:
194194

195-
# [Azure CLI](#tab/azcli)
195+
# [Azure CLI](#tab/azcli)
196196

197-
```azurecli
198-
az keyvault show --name <keyvault-name> --query 'id' --output tsv
199-
```
197+
```azurecli
198+
az keyvault show --name <keyvault-name> --query 'id' --output tsv
199+
```
200200
201-
# [Azure PowerShell](#tab/azpowershell)
201+
# [Azure PowerShell](#tab/azpowershell)
202202
203-
```azurepowershell
204-
Get-AzureRMKeyVault -VaultName '<keyvault-name>'
205-
```
206-
---
203+
```azurepowershell
204+
Get-AzureRMKeyVault -VaultName '<keyvault-name>'
205+
```
206+
---
207207
208-
This command returns a value similar to `/subscriptions/{subscription-guid}/resourceGroups/<resource-group-name>/providers/Microsoft.KeyVault/vaults/<keyvault-name>`.
208+
This command returns a value similar to `/subscriptions/{subscription-guid}/resourceGroups/<resource-group-name>/providers/Microsoft.KeyVault/vaults/<keyvault-name>`.
209209
210-
1. To get the value for the URI for the customer managed key, use the following command:
210+
1. To get the value for the URI for the customer managed key, use the following command:
211211
212-
# [Azure CLI](#tab/azcli)
212+
# [Azure CLI](#tab/azcli)
213213
214-
```azurecli
215-
az keyvault key show --vault-name <keyvault-name> --name <key-name> --query 'key.kid' --output tsv
216-
```
214+
```azurecli
215+
az keyvault key show --vault-name <keyvault-name> --name <key-name> --query 'key.kid' --output tsv
216+
```
217217
218-
# [Azure PowerShell](#tab/azpowershell)
218+
# [Azure PowerShell](#tab/azpowershell)
219219
220-
```azurepowershell
221-
Get-AzureKeyVaultKey -VaultName '<keyvault-name>' -KeyName '<key-name>'
222-
```
223-
---
220+
```azurepowershell
221+
Get-AzureKeyVaultKey -VaultName '<keyvault-name>' -KeyName '<key-name>'
222+
```
223+
---
224224
225-
This command returns a value similar to `https://mykeyvault.vault.azure.net/keys/mykey/{guid}`.
225+
This command returns a value similar to `https://mykeyvault.vault.azure.net/keys/mykey/{guid}`.
226226
227-
> [!IMPORTANT]
227+
> [!IMPORTANT]
228228
> Once a workspace has been created, you cannot change the settings for confidential data, encryption, key vault ID, or key identifiers. To change these values, you must create a new workspace using the new values.
229229
230230
To enable use of Customer Managed Keys, set the following parameters when deploying the template:

0 commit comments

Comments
 (0)