Hoping the community or Pulumi itself can answer t...
# azure
l
Hoping the community or Pulumi itself can answer this. We got emails from Azure to the effect that "Azure SQL Database 2014-04-01 APIs will be retired on 31 October 2025" (see screenshot). The info at the link included in the email is less than helpful - way too much to think through. However, the "2014-04-01" naming of the API sounds like the kind of naming I'd see associated with the Pulumi Azure Native provider. So my question is whether I'm right about that: Is the Pulumi Azure Native provider a consumer of the 2014-04-01 Azure SQL Database API? If so, where does the provider stand in terms of no longer relying on that version of the API (the new "stable" one is 2021-11-01)? And what version of the Azure Native provider do we need to be on to be sure we're using the 2021-11-01 version of the API? Thanks.
t
Pulumi Azure Native uses 2021-11-01 of the SQL API by default since 2.0. Even before that, most 1.x versions (maybe all) used the
2020-11-01-preview
version as the default. That means that unless you are explicitly importing the 2014-04-01 version in your Pulumi programs (like
using Pulumi.AzureNative.Sql.V20140401
), then you are not affected.
👁️ 2
👀 1
l
Thanks.