Questions Regarding Minimum TLS Version for Azure Storage Accounts

Idan Aharoni 20 Reputation points
2025-07-13T13:42:44.8833333+00:00

Hi,

We currently use two methods to create storage accounts in Azure:

According to https://learn.microsoft.com/en-us/azure/storage/common/transport-layer-security-configure-migrate-to-tls2#about-transport-layer-security, Azure will stop supporting TLS versions below 1.2.

We’ve observed that storage accounts created via our current deployment methods are set by default to "Minimum TLS version: 1.0". We have two questions regarding this:

  1. Once Azure discontinues support for TLS versions below 1.2, will newly created storage accounts default to "Minimum TLS version: 1.2"?
  2. Will existing storage accounts be automatically updated to have "Minimum TLS version" set to 1.2?

Thanks You.

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
{count} votes

Accepted answer
  1. Marcin Policht 53,675 Reputation points MVP Volunteer Moderator
    2025-07-13T15:52:23.6333333+00:00

    Once Azure discontinues support for TLS versions below 1.2, will newly created storage accounts default to "Minimum TLS version: 1.2"?

    This behavior may vary depending on:

    • The SDK or API version you’re using.
    • The region you're deploying to.
    • Whether you're using legacy or newer SDKs (like Azure.ResourceManager SDKs).

    Currently, storage accounts created with the Fluent SDK or the Management SDK often default to TLS 1.0 unless you explicitly specify a different version in the creation parameters. To ensure compliance, you should explicitly set the MinimumTlsVersion property to TLS1_2 when creating new storage accounts.

    Will existing storage accounts be automatically updated to have "Minimum TLS version" set to 1.2?

    AFAIK, in a sense - yes, but this will be enforced on the platform level. As per

    https://techcommunity.microsoft.com/blog/azurepaasblog/azure-storage---tls-1-0-and-1-1-retirement/4281140

    Azure Storage TLS 1.0 and 1.1 deprecation date was postponed 1 year, to Nov 1st, 2025. After that date, all clients connecting to Azure Storage services using TLS version below 1.2, will not be able to connect to Azure Storage anymore. You don't need to take any action on your Azure Storage services; this change will be automatic. You just need to ensure that all client applications connecting to your Storage accounts are using TLS 1.2 or above, after that date.


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.