change copyright and rename azure identity provider
This commit is contained in:
		| @@ -5,10 +5,10 @@ using MongoDB.Driver.Authentication.Oidc; | ||||
| namespace Core.Blueprint.Mongo.Configuration | ||||
| { | ||||
|     /// <summary> | ||||
|     /// The <see cref="HeathIdentityProvider"/> class is responsible for acquiring an OpenID Connect (OIDC)  | ||||
|     /// The <see cref="AzureIdentityProvider"/> class is responsible for acquiring an OpenID Connect (OIDC)  | ||||
|     /// access token for MongoDB authentication using Azure Identity and Managed Identity credentials. | ||||
|     /// </summary> | ||||
|     public class HeathIdentityProvider : IOidcCallback | ||||
|     public class AzureIdentityProvider : IOidcCallback | ||||
|     { | ||||
|         /// <summary> | ||||
|         /// The audience (resource identifier) for which the OIDC token is being requested. | ||||
| @@ -21,10 +21,10 @@ namespace Core.Blueprint.Mongo.Configuration | ||||
|         private readonly string _environment; | ||||
| 
 | ||||
|         /// <summary> | ||||
|         /// Initializes a new instance of the <see cref="HeathIdentityProvider"/> class with the specified audience. | ||||
|         /// Initializes a new instance of the <see cref="AzureIdentityProvider"/> class with the specified audience. | ||||
|         /// </summary> | ||||
|         /// <param name="audience">The audience (resource identifier) for which the OIDC token is being requested.</param> | ||||
|         public HeathIdentityProvider(string audience) | ||||
|         public AzureIdentityProvider(string audience) | ||||
|         { | ||||
|             _audience = audience; | ||||
|             _environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? string.Empty; | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin