Skip to content

Commit d7de310

Browse files
author
Larry
committed
formatting
1 parent 88f80ed commit d7de310

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ __To add the Azure Machine Learning app as a contributor__, use the following co
108108
109109
This command returns the object ID, which is a GUID.
110110
111-
2. To add the object ID as a contributor to your subscription, use the following command. Replace `<object-ID>` with the GUID from the previous step. Replace `<subscription-ID>` with the name or ID of your Azure subscription:
111+
1. To add the object ID as a contributor to your subscription, use the following command. Replace `<object-ID>` with the GUID from the previous step. Replace `<subscription-ID>` with the name or ID of your Azure subscription:
112112
113113
```azurecli-interactive
114114
az role assignment create --role 'Contributor' --assignee-object-id <object-ID> --subscription <subscription-ID>
@@ -138,19 +138,19 @@ __To get the values__ for the `cmk_keyvault` (ID of the Key Vault) and the `reso
138138
139139
1. To get the Key Vault ID, use the following command:
140140
141-
```azurecli-interactive
142-
az keyvault show --name mykeyvault --resource-group myresourcegroup --query "id"
143-
```
141+
```azurecli-interactive
142+
az keyvault show --name mykeyvault --resource-group myresourcegroup --query "id"
143+
```
144144
145-
This command returns a value similar to `/subscriptions/{subscription-guid}/resourceGroups/myresourcegroup/providers/Microsoft.KeyVault/vaults/mykeyvault`.
145+
This command returns a value similar to `/subscriptions/{subscription-guid}/resourceGroups/myresourcegroup/providers/Microsoft.KeyVault/vaults/mykeyvault`.
146146
147147
1. To get the value for the URI for the customer managed key, use the following command:
148148
149-
```azurecli-interactive
150-
az keyvault key show --vault-name mykeyvault --name mykey --query "key.kid"
151-
```
149+
```azurecli-interactive
150+
az keyvault key show --vault-name mykeyvault --name mykey --query "key.kid"
151+
```
152152
153-
This command returns a value similar to `https://mykeyvault.vault.azure.net/keys/mykey/{guid}`.
153+
This command returns a value similar to `https://mykeyvault.vault.azure.net/keys/mykey/{guid}`.
154154
155155
__Example template__
156156

0 commit comments

Comments
 (0)