Home > Software engineering >  How to access Azure Storage Account Container as Azure subscription service administrator
How to access Azure Storage Account Container as Azure subscription service administrator

Time:11-12

I am setting up azure blob storage setup but having trouble accessing a container via the Azure AD User Account Authentication Method. I am the subscription service administrator but are seeing this error(image below) when I try to view the container.

Authentication Error enter image description here

I have tried to give myself the role Storage Blob Data Owner on the storage account in question, but this did not change the outcome.

CodePudding user response:

I tried to reproduce the same in my environment i got the same error like below.

enter image description here

To resolve this issue, try to assign roles like below.

enter image description here

Make sure to Enabled from all network:

In your storage account -> under security networking click networking -> Enabled from all networks and save

enter image description here

Now, I am able to successfully upload the blob in the container like below.

enter image description here

  • Related