Reputation: 137
I have one Azure storage account with several containers, where I have some guest users who will be logging into the portal, but they should have read
/write
access to the specific containers. These guest users should not have delete
permissions.
I have gone through so many articles but never succeed.
Is there any way where I can achieve this?
Upvotes: 10
Views: 37911
Reputation: 28204
To give a specific container permission, you can do this followings:
Find your container, select Access Policy under the settings blade, and click Add Policy. Select the permissions which you want to give this specific container. Also, public access level is container level.
You can get more details from Manage anonymous read access to containers and blobs
In addition, there is a preview version of managing access rights to Azure storage account with RBAC roles. For the container scope, assign the Storage Blob Data Reader (Preview) role to a user. But it is intended for non-production use only.
Upvotes: 9