It appears that you are encountering a ResourceNotFound error for blob storage data plane operations despite successful management plane operations and the creation of the storage account. Here are some insights that may help you troubleshoot this issue:
- Check Container Existence: Ensure that the containers you are trying to access actually exist. The
ResourceNotFounderror can occur if the specified container or blob does not exist. You can verify this by using the Azure Portal or CLI to list the containers. - Propagation Delay: Sometimes, there may be a propagation delay after creating a storage account or containers. Although you mentioned waiting for 10+ minutes, it might be worth waiting a bit longer or retrying the operations after some time.
- Subscription Policies: There could be subscription-level policies that restrict certain operations. It's advisable to check if there are any policies applied to your Pay-As-You-Go subscription that might limit data plane access.
- Regional Issues: While it seems unlikely, there could be temporary issues specific to the East US region. You might want to check Azure Service Health for any ongoing issues in that region.
- Authentication and Permissions: Since you have tested multiple authentication methods and verified that shared key access is enabled, ensure that the permissions associated with the authentication method you are using are sufficient for the operations you are attempting. For example, if using a SAS token, ensure it has the necessary permissions.
- Diagnostic Logs: Review diagnostic logs for any additional error messages or clues. Azure provides logs that can help identify issues related to authentication and authorization.
- Contact Support: If the issue persists, consider reaching out to Azure Support for further assistance, especially since you mentioned that operations work in a different subscription.
In summary, verify the existence of the resources, check for any subscription policies, and consider reaching out to support if the problem continues.
References: