Storage Account Name Taken

Thomas Samuel 0 Reputation points
2024-10-06T17:26:27.9766667+00:00

A little while ago I created two storage accounts in Azure. I deleted them probably a month ago now, but the names are still unavailable if I try to create ones with the same name.

I don't want to pay for developer support, as this strikes me as more of an issue with the platform than my implementation.

Anyone have any ideas?

Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,149 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. akinbade abiola 16,645 Reputation points
    2024-10-06T22:19:09.8033333+00:00

    Azure holds onto the deleted storage account names for a period, usually up to 14 days.

    Storage account names are globally unique. It’s possible someone else has taken the name you were using, even if you deleted it.

    You can confirm if the name is available using:

    az storage account check-name --name $storageaccount
    
    

    This will tell you if the name is currently being used or its state

    See: https://learn.microsoft.com/en-us/cli/azure/storage/account?view=azure-cli-latest#az-storage-account-check-name

    You can mark it 'Accept Answer' and 'Upvote' if this helped you

    Regards,

    Abiola

    0 comments No comments

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.