You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-create-workspace-template.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ __To add the Azure Machine Learning app as a contributor__, use the following co
108
108
109
109
This command returns the object ID, which is a GUID.
110
110
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:
112
112
113
113
```azurecli-interactive
114
114
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
138
138
139
139
1. To get the Key Vault ID, use the following command:
140
140
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
+
```
144
144
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`.
146
146
147
147
1. To get the value for the URI for the customer managed key, use the following command:
148
148
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
+
```
152
152
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}`.
0 commit comments