@@ -27,7 +27,7 @@ public enum SettingName
2727 {
2828 /// <summary>
2929 /// The authentication provider to use. Allowed values are <c>null</c> (local username/password),
30- /// <c>"Active Directory"</c>, <c>"Azure Active Directory "</c> and <c>"OpenID Connect"</c>.
30+ /// <c>"Active Directory"</c>, <c>"Microsoft Entra ID "</c> and <c>"OpenID Connect"</c>.
3131 /// </summary>
3232 AuthenticationProvider ,
3333
@@ -38,7 +38,7 @@ public enum SettingName
3838 AutomaticAccessADGroup ,
3939
4040 /// <summary>
41- /// If <c>true</c>, Azure Active Directory accounts in the configured tenant will
41+ /// If <c>true</c>, Microsoft Entra ID accounts in the configured tenant will
4242 /// be automatically granted user access to Seq.
4343 /// </summary>
4444 [ Obsolete ( "Use `AutomaticallyProvisionAuthenticatedUsers`." , error : true ) ]
@@ -51,25 +51,29 @@ public enum SettingName
5151 AutomaticallyProvisionAuthenticatedUsers ,
5252
5353 /// <summary>
54- /// The AAD authority. The default is <c>login.windows.net</c>; government cloud users may
54+ /// The Microsoft Entra ID authority. The default is <c>login.windows.net</c>; government cloud users may
5555 /// require <c>login.microsoftonline.us</c> or similar.
5656 /// </summary>
57- AzureADAuthority ,
57+ // ReSharper disable once InconsistentNaming
58+ EntraIDAuthority ,
5859
5960 /// <summary>
60- /// The Azure Active Directory client id.
61+ /// The Microsoft Entra ID client id.
6162 /// </summary>
62- AzureADClientId ,
63+ // ReSharper disable once InconsistentNaming
64+ EntraIDClientId ,
6365
6466 /// <summary>
65- /// The Azure Active Directory client key.
67+ /// The Microsoft Entra ID client key.
6668 /// </summary>
67- AzureADClientKey ,
69+ // ReSharper disable once InconsistentNaming
70+ EntraIDClientKey ,
6871
6972 /// <summary>
70- /// The Azure Active Directory tenant id.
73+ /// The Microsoft Entra ID tenant id.
7174 /// </summary>
72- AzureADTenantId ,
75+ // ReSharper disable once InconsistentNaming
76+ EntraIDTenantId ,
7377
7478 /// <summary>
7579 /// Server-local filesystem location where automatic backups are stored.
@@ -170,7 +174,7 @@ public enum SettingName
170174 /// If using OpenID Connect, overrides the URI of the provider's metadata endpoint.
171175 /// </summary>
172176 OpenIdConnectMetadataAddress ,
173-
177+
174178 /// <summary>
175179 /// If <c>true</c>, ingestion requests incoming via HTTP must be authenticated using an API key or
176180 /// logged-in user session. Only effective when <see cref="IsAuthenticationEnabled"/> is <c>true</c>.
0 commit comments