-
Notifications
You must be signed in to change notification settings - Fork 301
Allow Entra authentication when connecting to Redis #3047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
a02948a
35e4e75
62d1ceb
2617bec
e98df40
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -3,6 +3,8 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| using System; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| using System.IO.Abstractions; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| using System.Linq; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| using System.Net; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| using System.Net.Http; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| using System.Net.Http.Headers; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| using System.Threading.Tasks; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -435,7 +437,7 @@ public void ConfigureServices(IServiceCollection services) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| else | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| // NOTE: this is done to reuse the same connection multiplexer for both the cache and backplane | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Task<ConnectionMultiplexer> connectionMultiplexerTask = ConnectionMultiplexer.ConnectAsync(level2CacheOptions.ConnectionString); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Task<IConnectionMultiplexer> connectionMultiplexerTask = CreateConnectionMultiplexerAsync(level2CacheOptions.ConnectionString); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| fusionCacheBuilder | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| .WithSerializer(new FusionCacheSystemTextJsonSerializer()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -470,6 +472,33 @@ public void ConfigureServices(IServiceCollection services) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| services.AddControllers(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| /// <summary> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| /// Creates a ConnectionMultiplexer for Redis with support for Azure Entra authentication. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| /// </summary> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| /// <param name="connectionString">The Redis connection string.</param> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| /// <returns>A task that represents the asynchronous operation. The task result contains the connected IConnectionMultiplexer.</returns> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| private static async Task<IConnectionMultiplexer> CreateConnectionMultiplexerAsync(string connectionString) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ConfigurationOptions options = ConfigurationOptions.Parse(connectionString); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| // Determine if an endpoint is localhost/loopback | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| static bool IsLocalhostEndpoint(EndPoint ep) => ep switch | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| DnsEndPoint dns => string.Equals(dns.Host, "localhost", StringComparison.OrdinalIgnoreCase), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| IPEndPoint ip => IPAddress.IsLoopback(ip.Address), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| _ => false, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| // If no password is provided, and the endpoint (or at least one of them) is non-localhost, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| // attempt to use Entra authentication. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| if (string.IsNullOrEmpty(options.Password) && options.EndPoints.Any(static ep => !IsLocalhostEndpoint(ep))) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| options = await options.ConfigureForAzureWithTokenCredentialAsync(new DefaultAzureCredential()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| return await ConnectionMultiplexer.ConnectAsync(options); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+496
to
+499
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| options = await options.ConfigureForAzureWithTokenCredentialAsync(new DefaultAzureCredential()); | |
| } | |
| return await ConnectionMultiplexer.ConnectAsync(options); | |
| try | |
| { | |
| options = await options.ConfigureForAzureWithTokenCredentialAsync(new DefaultAzureCredential()); | |
| } | |
| catch (CredentialUnavailableException ex) | |
| { | |
| throw new InvalidOperationException( | |
| "Failed to acquire Azure credentials for Redis. " + | |
| "Ensure that a managed identity or other Azure credentials are correctly configured " + | |
| "for this environment before enabling Entra authentication for Redis.", | |
| ex); | |
| } | |
| catch (AuthenticationFailedException ex) | |
| { | |
| throw new InvalidOperationException( | |
| "Azure authentication for Redis failed while using DefaultAzureCredential. " + | |
| "Verify that the configured identity has permission to access the Redis resource " + | |
| "and that all required environment settings are correct.", | |
| ex); | |
| } | |
| } | |
| try | |
| { | |
| return await ConnectionMultiplexer.ConnectAsync(options); | |
| } | |
| catch (RedisConnectionException ex) | |
| { | |
| throw new InvalidOperationException( | |
| "Failed to connect to Redis using the provided configuration. " + | |
| "Verify that the Redis connection string, network connectivity, and Redis instance " + | |
| "configuration are correct.", | |
| ex); | |
| } |
Uh oh!
There was an error while loading. Please reload this page.