Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/setup/install-new.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Follow the steps below to create an Azure Active Directory (AAD) [service princi
1. Execute the next command in [Cloud Shell](https://shell.azure.com/) to create the `objectId` bash variable, which is the new Service Principal:

```bash
objectId=$(az ad sp show --id $appId --query "objectId" -o tsv)
objectId=$(az ad sp show --id $appId --query "id" -o tsv)
```

The `objectId` bash variable will be used in the ARM template below. View the value with `echo $objectId`.
Expand Down