You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are migrating your usage to `dotnet monitor` 9.0, the following changes might affect you. Changes are grouped together by areas within the tool.
4
+
5
+
## Changes
6
+
7
+
| Area | Title | Introduced |
8
+
|--|--|--|
9
+
| Configuration |[`TenantId` is now required when configuring Azure Active Directory authentication](#configuration-azure-active-directory-authentication)| RC 2 |
10
+
11
+
## Details
12
+
13
+
### Configuration: Azure Active Directory Authentication
14
+
15
+
When using Azure Active Directory (Entra ID) for authentication, setting the `TenantId` option is now **required**. See [Azure Active Directory Authentication Configuration](../../configuration/azure-ad-authentication-configuration.md#configuration-options) for more details.
Copy file name to clipboardExpand all lines: documentation/configuration/azure-ad-authentication-configuration.md
+10-2
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,19 @@ Azure Active Directory authentication must be configured before `dotnet monitor`
6
6
7
7
## Configuration Options
8
8
9
+
> [!NOTE]
10
+
> Starting in 9.0 RC 2, the `TenantId` option is now **required**.
11
+
9
12
| Name | Type | Required | Description |
10
13
|---|---|---|---|
11
14
| ClientId | string | true | The unique application (client) id assigned to the app registration in Azure Active Directory. |
12
15
| RequiredRole | string | true | The role required to be able to authenticate. |
13
16
| AppIdUri | uri | false | The App ID URI of the app registration. Defaults to `api://{ClientId}` if not specified. |
14
17
| Instance | uri | false | Specifies the Azure cloud instance users are signing in from. Can be either the Azure public cloud or one of the national clouds. Defaults to the Azure public cloud (`https://login.microsoftonline.com`). |
15
-
| TenantId | string | false | The tenant id of the Azure Active Directory tenant, or its tenant domain. Defaults to `organizations`. |
18
+
| TenantId (9.0 RC 2+) | string | true | The tenant id of the Azure Active Directory tenant. |
19
+
| TenantId | string | false | The tenant id of the Azure Active Directory tenant. Defaults to `organizations`. |
16
20
17
-
A minimal configuration requires setting just the `ClientId` and `RequiredRole`.
21
+
A minimal configuration requires setting just the `TenantId`, `ClientId`, and `RequiredRole`.
18
22
19
23
### Example Configuration
20
24
@@ -25,6 +29,7 @@ A minimal configuration requires setting just the `ClientId` and `RequiredRole`.
0 commit comments