Skip to content

Commit e3de93b

Browse files
authored
Merge pull request #86623 from tvdvoorde/patch-1
corrected quote
2 parents 83ff0b0 + 3d246f8 commit e3de93b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/app-service/tutorial-auth-aad.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ In the Cloud Shell, run the following commands on the front-end app to add the `
298298

299299
```azurecli-interactive
300300
authSettings=$(az webapp auth show -g myAuthResourceGroup -n <front-end-app-name>)
301-
authSettings=$(echo "$authSettings | jq '.properties' | jq '.identityProviders.azureActiveDirectory.login += {"loginParameters":["scope=openid profile email offline_access api://<back-end-client-id>/user_impersonation"]}')
301+
authSettings=$(echo "$authSettings" | jq '.properties' | jq '.identityProviders.azureActiveDirectory.login += {"loginParameters":["scope=openid profile email offline_access api://<back-end-client-id>/user_impersonation"]}')
302302
az webapp auth set --resource-group myAuthResourceGroup --name <front-end-app-name> --body "$authSettings"
303303
```
304304

0 commit comments

Comments
 (0)