Sjors Miltenburg
Sjors Miltenburg

Reputation: 2740

readonly access to azure storage account

Our software uses Azure blob & Azure table storage.

I would like developers to be able to look through our production data with the Microsoft Azure Storage Explorer, but not be allowed to accidentaly edit it's data. I don't want to allow anonymous access to the data (read only) as suggested here.

What would be a good way to achieve this?

Upvotes: 4

Views: 1120

Answers (1)

Anish K
Anish K

Reputation: 818

Make use of Shared Access Signature option to connect to Azure Blob Storage from the Storage Explorer.

Find more details about SAS here.

Find more details about SAS in Storage Explorer here. enter image description here

Upvotes: 3

Related Questions