@Terrence7 Thanks for posting your query on Microsoft Q&A. Can you pls confirm that you have a classic storage account? Is it possible that your storage account might already be using the Azure Resource Manager (ARM) deployment model?
Here are a few steps to confirm this:
- Steps provided here check for the 'type' https://learn.microsoft.com/en-us/azure/storage/common/classic-account-migrate?tabs=azure-portal#locate-and-delete-any-disk-artifacts-in-a-classic-account
- You can use Azure CLI or PowerShell to list your storage accounts and check their types. For example, using Azure CLI: If the
Kind
field showsStorageV2
orBlobStorage
, it indicates an ARM storage account.az storage account list --query
Pls check and let me know and I can further investigate.