I need to change storage account container and blob access level to private. I have more than 200 storage accounts and more than 1000 containers in my subscription.
Please suggest quick solution to do the same.
Thanks in advance
I need to change storage account container and blob access level to private. I have more than 200 storage accounts and more than 1000 containers in my subscription.
Please suggest quick solution to do the same.
Thanks in advance
@PraveenMittapalli-6705 Welcome to Microsoft Q&A Forum, Thank you for posting your query here!
You can use Azure PowerShell or CLI
$ctx = New-AzureStorageContext -StorageAccountName <name> -StorageAccountKey <key>
Get-AzureStorageContainer -Context $ctx | Set-AzureStorageContainerAcl -Permission Off -PassThru
You can also use Azure Storage Explorer tool to perform this task.

Hope this helps!
Kindly let us know if the above helps or you need further assistance on this issue.
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.
16 people are following this question.