Eric Erhardt
Eric Erhardt
## Description Opening as a draft for now. This PR will wait until the bits are live on nuget.org and we will use the official beta versions. FYI @tg-msft @davidfowl...
If I have the following: ```C# var builder = DistributedApplication.CreateBuilder(args); var redis = builder.AddRedis("redis") .WithDataVolume() .WithRedisInsight(c => c.WithLifetime(ContainerLifetime.Persistent)); builder.AddProject("apiservice") .WithReference(redis).WaitFor(redis); builder.Build().Run(); ``` When I run multiple times, the RedisInights container...
Today, Aspire.Hosting.Azure.EventHubs allows users to add EventHub instances: https://github.com/dotnet/aspire/blob/7b1fd6d6fe5aa0c6fc3680f0e23ec127c9743789/src/Aspire.Hosting.Azure.EventHubs/AzureEventHubsExtensions.cs#L80-L85 However, the developer can't add consumer groups to the EventHub. We should allow for consumer groups to be modeled. One issue...
Today, Aspire resource names support hyphen `-` characters. We take those resource names and use them for bicep variable names. For example: https://github.com/dotnet/aspire/blob/aa34436aa9d168c3858a5e2fec231f4a746103da/src/Aspire.Hosting.Azure.Storage/AzureStorageExtensions.cs#L43-L49 This doesn't work well because when you...
## Background and Motivation See https://github.com/dotnet/aspire/pull/5930#issuecomment-2381917879 for some of the context. With * [Add Azure PostgreSQL managed identity (dotnet/aspire#5930)](https://github.com/dotnet/aspire/pull/5930) * [Support Managed Identity in Azure Cache for Redis (dotnet/aspire#5966)](https://github.com/dotnet/aspire/pull/5966) *...
### Proposed topic or title Azure Security Details and Best Practices ### Location in table of contents. Deployment / Azure ### Reason for the article Developers need to know what...
### Describe the issue or suggestion With supporting Microsoft Entra ID in Redis and PostgreSQL we needed to introduce a new API pattern for working with these resources that can...
In https://github.com/dotnet/aspire/pull/5809, and as part of the move to the new Azure.Provisioning versions, we are making a change to how Azure resources are named. See https://github.com/dotnet/aspire/issues/5756 for the description of...
### Describe the issue or suggestion In .NET Aspire 9.0, we are [updating](https://github.com/dotnet/aspire/pull/5592) the Azure.Provisioning packages to the latest, non-preview versions. We need to update any docs that is using...