My IT department is getting an e-mail "Azure SQL Database 2014-04-01 APIs will be retired on 31 October 2025". I use bicep and have never used any API's that are that old, they're all currently at 2021-11-01. If I export my Azure SQL Database or Server I get entries like the following:
resource servers_myproj_dev1_sql_name_CreateIndex 'Microsoft.Sql/servers/advisors@2014-04-01' = {
parent: servers_myproj_dev1_sql_name_resource
name: 'CreateIndex'
properties: {
autoExecuteValue: 'Disabled'
}
}
I believe these were implicitly added when I initially deployed. Two questions:
- On November 1 2025 will I experience any problems due to obsolete API's?
- How can I stop the e-mail that are unnerving my IT department?
I'm fairly certain from running the Graph queries specified in How to react to message from Microsoft regarding updating API's that the answer to 1 is no, it won't be a problem.
What I don't know about is #2. If I update my bicep files to specify Microsoft.Sql/servers/databases/advisors@2021-11-01 with autoExecuteValue: 'Disabled' will it make the error messages go away?
