User Review
( votes)We got the below error while trying to transfer files to Azure Blob Storage using AzCopy
INFO: Authentication failed, it is either not correct, or expired, or does not have the correct permission -> github.com/Azure/azure-storage-blob-go/azblob.newStorageError, /home/vsts/go/pkg/mod/github.com/!azure/azure-storage-blob-go@v0.10.1-0.20201022074806-8d8fc11be726/azblob/zc_storage_error.go:42
===== RESPONSE ERROR (ServiceCode=AuthorizationPermissionMismatch) =====
Description=This request is not authorized to perform this operation using this permission.
RequestId:43ee21af-501e-0055-30ef-c07ec3000000
Time:2020-11-22T16:51:42.0459952Z, Details:
Code: AuthorizationPermissionMismatch
Here we were using Azure Active Directory to provide authorization credentials to AzCopy
The account (service principal) we were using was having the Owner Role
To fix this issue, we assigned the
Storage Blob Data Contributor role to the account.
Retrying again after some time fixed the issue.
Points to keep in mind –
Hope it helps..