Hello Fernando Gutierrez,
Thanks for your question.
These roles should be sufficient for the user to perform operations like saving and deleting files within a container.
There are various reasons why this can be happening:
- If using SAS or access keys, check correct permissions.
- Assignment not in correct scope. You can verify using the CLI command below:
az role assignment list --assignee user@example.com --scope /subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.Storage/storageAccounts/<storage-account>
- Also check if there are no deny assignments. See:
az role assignment list --assignee user@example.com --include-deny-assignments
It could also be as a result of network rules. Verify network rules:
az storage account network-rule list --account-name <storage-account> -g <resource-group-name>
See:
You can mark it 'Accept Answer' and 'Upvote' if this helped you
Regards,
Abiola