Skip to content

Commit e9479f7

Browse files
committed
clarified
1 parent 68fd06b commit e9479f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

includes/container-registry-tasks-user-assigned-id.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Create an identity named *myACRTasksId* in your subscription using the [az ident
1818
az identity create --resource-group myResourceGroup --name myACRTasksId
1919
```
2020

21-
To configure the user-assigned identity in the following steps, use the [az identity show][az-identity-show] command to store the identity's resource ID, service principal ID, and client ID in variables.
21+
To configure the user-assigned identity in the following steps, use the [az identity show][az-identity-show] command to store the identity's resource ID, principal ID, and client ID in variables.
2222

2323
```azurecli
2424
# Get resource ID of the user-assigned identity
2525
resourceID=$(az identity show --resource-group myResourceGroup --name myACRTasksId --query id --output tsv)
2626
27-
# Get service principal ID of the user-assigned identity
27+
# Get principal ID of the task's user-assigned identity
2828
principalID=$(az identity show --resource-group myResourceGroup --name myACRTasksId --query principalId --output tsv)
2929
3030
# Get client ID of the user-assigned identity

0 commit comments

Comments
 (0)