How to create Custom Read-Write role for Blob Storage in Azure
The best way is to use PowerShell Cloud Shell. Prepare environment: cd \home mkdir workingdir cd workingdir Write existing role to JSON format: get-azroledefinition -Name “Storage Blob data Contributor”|ConvertTo-Json|Out-File ReadWriteRole.json Edit the file by using (IsCustom set to true, put AssignableScope with correct subscription, delete unnecessary actions, give a new Name and description, Id is […]