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-use-managed-identities.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -191,10 +191,10 @@ In this scenario, Azure Machine Learning service builds the training or inferenc
191
191
1. Grant the Managed Identity Operator role:
192
192
193
193
```azurecli-interactive
194
-
az role assignment create --assignee <principal ID> --role managedidentityoperator --scope <UAI resource ID>
194
+
az role assignment create --assignee <principal ID> --role managedidentityoperator --scope <user-assigned managed identity resource ID>
195
195
```
196
196
197
-
The UAI resource ID is Azure resource ID of the user assigned identity, in the format `/subscriptions/<subscription ID>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/<UAI name>`.
197
+
The user-assigned managed identity resource ID is Azure resource ID of the user assigned identity, in the format `/subscriptions/<subscription ID>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/<user-assigned managed identity name>`.
198
198
199
199
1. Specify the external ACR and client ID of the __user-assigned managed identity__ in workspace connections by using [Workspace.set_connection method](/python/api/azureml-core/azureml.core.workspace.workspace#set-connection-name--category--target--authtype--value-):
200
200
@@ -204,7 +204,7 @@ In this scenario, Azure Machine Learning service builds the training or inferenc
Once the configuration is complete, you can use the base images from private ACR when building environments for training or inference. The following code snippet demonstrates how to specify the base image ACR and image name in an environment definition:
@@ -222,8 +222,8 @@ Optionally, you can specify the managed identity resource URL and client ID in t
222
222
from azureml.core.container_registry import RegistryIdentity
0 commit comments