Hi ,
Thanks for reaching out to Microsoft Q&A.
Microsoft has announced the deprecation of TLS 1.0 and 1.1, and will enforce TLS 1.2 or higher starting November 1, 2025.
Once enforcement begins...
Storage accounts created without explicitly specifying minimumTlsVersion
will likely fail creation if the platform blocks TLS 1.0 at the time of provisioning.
Alternatively, Microsoft may silently override the default behavior and apply TLS 1.2
as the minimum, even if the API schema has not been updated yet. This behavior change would likely be documented in upcoming release notes.
To avoid ambiguity or breaking changes:
Always explicitly set minimumTlsVersion
to TLS1_2
(or higher) in your storage account creation scripts and templates.
Monitor Azure updates or the Azure REST API changelog for any updates to this default behavior.
What You Can Expect Post November?
If nothing changes in the API:
- Storage accounts created without
minimumTlsVersion
may either be blocked or default toTLS 1.2
. - Legacy deployments or IaC pipelines might break if they depend on the implicit TLS 1.0 default.
Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the reply was helpful. This will be benefitting other community members who face the same issue.