Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ The following steps are required to deploy the infrastructure from the command l
RESOURCE_GROUP=rg-chat-basic-${BASE_NAME}
az group create -l $LOCATION -n $RESOURCE_GROUP

PRINCIPAL_ID=$(az ad signed-in-user show --query id -o tsv)
PRINCIPAL_ID=$(az ad signed-in-user show --query id -o tsv| tr -d '\r\n')
Copy link
Member

@ckittel ckittel Aug 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC, only time this would ever be a problem is if you were in WSL but using the az binary from windows. -- Which the instructions above specifically say is not supported. We won't be adding a workaround to work around people working around the instructions.

If you're executing this from WSL, be sure the Azure CLI is installed in WSL and is not using the version installed in Windows. which az should show /usr/bin/az.


# This takes about 10 minutes to run.
az deployment group create -f ./infra-as-code/bicep/main.bicep \
Expand Down