swapped two config value descriptions. (#1414)

## Description

config docs had two config descriptions swapped 

## Type of change

<!--- Please check the type of change your PR introduces: --->
- [ ] 🌻 Feature
- [ ] 🐛 Bugfix
- [ x] 🗺️ Documentation
- [ ] 🤖 Test
- [ ] 💻 CI/Deployment
- [ ] 🐹 Trivial/Minor

## Issue(s)

<!-- Can reference multiple issues. Use one of the following "magic
words" - "closes, fixes" to auto-close the Github issue. -->
* #<issue>

## Test Plan

<!-- How will this be tested prior to merging.-->
- [x ] 💪 Manual
- [ ]  Unit test
- [ ] 💚 E2E
This commit is contained in:
Nočnica Mellifera 2022-11-01 22:15:42 -07:00 committed by GitHub
parent 3d52cb18f9
commit 7547844bc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,8 +82,8 @@ Copy the client and tenant IDs and export them into the following environment va
<TabItem value="win" label="Powershell">
```powershell
$Env:AZURE_CLIENT_ID = "<Directory (tenant) ID for configured app>"
$Env:AZURE_TENANT_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>"
```
</TabItem>