diff --git a/docs/docs/configuration/m365_access.md b/docs/docs/configuration/m365_access.md
index e2c85be18..08099ecb0 100644
--- a/docs/docs/configuration/m365_access.md
+++ b/docs/docs/configuration/m365_access.md
@@ -29,13 +29,13 @@ The following steps outline a simplified procedure for creating an Azure Ad appl
1. **Configure required permissions**
- Select **App Permission** from the app management panel.
+ Select **API Permissions** from the app management panel.
- The required permissions are as follows:
+ Select the following permissions from **Microsoft API → Microsoft Graph → Application Permissions**:
-
+
| API / Permissions Name | Type | Description
|:--|:--|:--|
| Calendars.ReadWrite | Application | Read and write calendars in all mailboxes |
@@ -43,7 +43,7 @@ The following steps outline a simplified procedure for creating an Azure Ad appl
| Files.ReadWrite.All | Application | Read and write files in all site collections |
| Mail.ReadWrite | Application | Read and write mail in all mailboxes |
| User.Read.All | Application | Read all users' full profiles |
-
+
1. **Grant admin consent**
@@ -60,8 +60,8 @@ To extract the tenant and client ID, select Overview from the app management pan
environment variables.
```bash
-export AZURE_TENANT_ID=
-export AZURE_CLIENT_ID=
+export TENANT_ID=
+export CLIENT_ID=
```
@@ -75,7 +75,7 @@ Click **New Client Secret** and follow the instructions to create a secret. Afte
value right away because it won't be available later and export it as an environment variable.
```bash
-export AZURE_CLIENT_SECRET=
+export CLIENT_SECRET=
```
diff --git a/docs/docs/developers/testing.md b/docs/docs/developers/testing.md
index a9190f4b7..e2e64b44e 100644
--- a/docs/docs/developers/testing.md
+++ b/docs/docs/developers/testing.md
@@ -2,10 +2,10 @@
## Prerequisites
-- Set `CORSO_PASSWORD` environment variable
+- Set `CORSO_PASSPHRASE` environment variable
```bash
- export CORSO_PASSWORD=
+ export CORSO_PASSPHRASE=
```
- Set AWS credential (needed for tests that use S3) environment variables
@@ -30,6 +30,8 @@
- Set M365 Credentials environment variables
+ > You can find more information on how to get these values in [configuration docs](/configuration/m365_access).
+
```bash
export TENANT_ID=
export CLIENT_ID=
diff --git a/docs/docs/install.md b/docs/docs/install.md
index 007223d93..65116e4ea 100644
--- a/docs/docs/install.md
+++ b/docs/docs/install.md
@@ -36,9 +36,9 @@ To create the environment variables file, you can run the following.
# create an env vars file
$ cat <
- Docusaurus Tutorial - 5min ⏱️
+ Corso Tutorial - 5min ⏱️