Not able to upload files to my Blob Storage Account.

Krishna Maramganti 0 Reputation points Microsoft Employee
2026-07-26T22:00:03.53+00:00

I am having an issues saying : Can someone pls help how to fix it ?

Failed to upload 3 out of 3 blob(s): catalog.pdf: Key based authentication is not permitted on this storage account. guide.pdf: Key based authentication is not permitted on this storage account. camping-accessories.pdf: Key based authentication is not permitted on this storage account.

Azure Blob Storage
Azure Blob Storage

An Azure service that stores unstructured data in the cloud as blobs.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Mehul Pandya 0 Reputation points
    2026-07-26T22:54:31.97+00:00

    Good Day @Krishna Maramganti

    The error "Key based authentication is not permitted on this storage account" indicates that the security configuration of your Azure Storage Account has disabled Shared Key and Connection String authentication.

    To fix this issue, you can choose one of the two solutions below:

    Microsoft recommends keeping key access disabled and using identity-based authentication instead.

    1. In the Azure Portal, go to your Storage Account > Access Control (IAM).
    2. Click Add role assignment and assign the Storage Blob Data Contributor role to your identity.
    3. If you are uploading via Azure Portal or Azure Storage Explorer, ensure your authentication toggle is set to "Microsoft Entra ID User Account" instead of "Access Key" or "SAS".

    Solution 2: Re-enable Key Access (If required by your app)

    If your upload method specifically relies on an Account Key or a standard Connection String, you must allow it in the settings:

    1. Go to your Storage Account in the Azure Portal.
    2. In the left menu under Settings, click on Configuration.
    3. Find Allow storage account key access and switch it to Enabled.
    4. Click Save at the top.

    Once saved, wait a minute for the policy to refresh and retry your file upload.

    Hope this will resolve the issue you are facing.

    Was this answer helpful?

    0 comments No comments

Your answer

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