Your organization needs to migrate files from an on-premises server to a container named uploads in an Azure Storage account named corpstore. The on-premises server connects to the internet via a public IP address of .
The firewall for the corpstore storage account is configured as follows:
- Allowed networks: 'Enabled from selected virtual networks and IP addresses'
- Allowed IP addresses: None
- Exception: 'Allow Azure services on the trusted services list to access this storage account' is selected.
You log in to the server, install AzCopy, and run the command `azcopy login` using an administrator account that has been assigned the 'Contributor' and 'Reader and Data Access' roles at the storage account level. When you run `azcopy sync "/data" "https://corpstore.blob.core.windows.net/uploads"`, the synchronization fails with network and authorization errors.
Which combination of actions will allow the synchronization to complete successfully using Microsoft Entra ID authentication?
- Add to the allowed IP address ranges of the storage account firewall, and assign the Storage Blob Data Contributor role to the administrator account.Answer
- BEnable the trusted Microsoft services exception, and verify that the administrator account has the Contributor role.
- CAdd to the allowed IP address ranges of the storage account firewall, and verify that the administrator account has the Contributor role.
- DAdd to the allowed IP address ranges of the storage account firewall, and assign the Storage Blob Data Reader role to the administrator account.