Fix error introduced by search/replace (#1928)

## Description

Fix Azure client ID docs description

## Does this PR need a docs update or release note?

- [x]  No 

## Type of change

- [x] 🐛 Bugfix
- [x] 🗺️ Documentation
This commit is contained in:
Niraj Tolia 2022-12-22 20:37:04 -08:00 committed by GitHub
parent 62c8f8c6ea
commit 9927ec3130
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ Obtaining credentials from Microsoft 365 to allow Corso to run is a one-time ope
<TabItem value="win" label="Powershell"> <TabItem value="win" label="Powershell">
```powershell ```powershell
$Env:AZURE_CLIENT_ID = "<Application (../client) ID for configured app>" $Env:AZURE_CLIENT_ID = "<Application (client) ID for configured app>"
$Env:AZURE_TENANT_ID = "<Directory (tenant) ID for configured app>" $Env:AZURE_TENANT_ID = "<Directory (tenant) ID for configured app>"
$Env:AZURE_CLIENT_SECRET = "<Client secret value>" $Env:AZURE_CLIENT_SECRET = "<Client secret value>"
``` ```
@ -36,7 +36,7 @@ Obtaining credentials from Microsoft 365 to allow Corso to run is a one-time ope
<TabItem value="unix" label="Linux/macOS"> <TabItem value="unix" label="Linux/macOS">
```bash ```bash
export AZURE_CLIENT_ID=<Application (../client) ID for configured app> export AZURE_CLIENT_ID=<Application (client) ID for configured app>
export AZURE_TENANT_ID=<Directory (tenant) ID for configured app> export AZURE_TENANT_ID=<Directory (tenant) ID for configured app>
export AZURE_CLIENT_SECRET=<Client secret value> export AZURE_CLIENT_SECRET=<Client secret value>
``` ```
@ -45,7 +45,7 @@ Obtaining credentials from Microsoft 365 to allow Corso to run is a one-time ope
<TabItem value="docker" label="Docker"> <TabItem value="docker" label="Docker">
```bash ```bash
export AZURE_CLIENT_ID=<Application (../client) ID for configured app> export AZURE_CLIENT_ID=<Application (client) ID for configured app>
export AZURE_TENANT_ID=<Directory (tenant) ID for configured app> export AZURE_TENANT_ID=<Directory (tenant) ID for configured app>
export AZURE_CLIENT_SECRET=<Client secret value> export AZURE_CLIENT_SECRET=<Client secret value>
``` ```