From 71b852a898b7b11058ba0b1198c3be16f3e42f8c Mon Sep 17 00:00:00 2001 From: Florian Knip Date: Tue, 6 Feb 2024 23:11:16 +0100 Subject: [PATCH] feat: outputparem should be ID maybe? --- docs/setup/install-new.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/install-new.md b/docs/setup/install-new.md index de3cd202a..e65bcc201 100644 --- a/docs/setup/install-new.md +++ b/docs/setup/install-new.md @@ -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`.