Azure / azure-sdk-for-net

This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
MIT License
5.46k stars 4.8k forks source link

Azure.Provisioning: Update Postgres for v16 #46560

Open tg-msft opened 2 weeks ago

tg-msft commented 2 weeks ago

Library name

Azure.Provisioning.PostgreSql

Please describe the feature.

We need to update Azure.Provisioning.PostgreSql so PostgreSqlFlexibleServerVersion goes all the way up to Ver16.

eerhardt commented 2 weeks ago

Can we update Azure Redis as well? That is missing DisableAccessKeyAuthentication. I've worked around it in Aspire with:

https://github.com/dotnet/aspire/blob/dfafce27a97b7e236c3c456355968529c1e8584e/src/Aspire.Hosting.Azure.Redis/AzureRedisExtensions.cs#L134-L135

var disableAccessKeys = BicepValue<string>.DefineProperty(redis, "DisableAccessKeyAuthentication", ["properties", "disableAccessKeyAuthentication"], isOutput: false, isRequired: false);
disableAccessKeys.Assign("true");

https://azure.microsoft.com/updates/v2/Enforce-passwordless-authentication-with-Azure-Cache-for-Redis