Skip to content

Commit

Permalink
docs: According to [azure-cli issue #19179][1], --id http// has ben d…
Browse files Browse the repository at this point in the history
…eprecated and only appId should be used. Update the docs accordingly.

[1]: Azure/azure-cli#19179 (comment)
  • Loading branch information
Sieboldianus committed Aug 2, 2022
1 parent 35deeec commit 534a893
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/kubernetes/microsoft/step-zero-azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ If you prefer to use the Azure portal see the [Azure Kubernetes Service quicksta
--scopes $VNET_ID \
--query password \
--output tsv)
SP_ID=$(az ad sp show \
--id http://<SERVICE-PRINCIPAL-NAME> \
--query appId \
SP_ID=$(az ad app list \
--filter "displayname eq '<SERVICE-PRINCIPAL-NAME>'" \
--query [0].appId \
--output tsv)
```
Expand Down

0 comments on commit 534a893

Please sign in to comment.