Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
Thanks for your question on the Microsoft Q&A portal!
I see you're having trouble creating a new storage account in Azure.
In addition to TP comment, I'd like to contribute a few more details for clarity.
The reason you're getting an error is that your Azure account has a rule—called a 'policy'—that only lets you create new things in certain areas, or 'regions,' of the world. The region you chose isn't on that list, so Azure is stopping you.
Post Validation Steps
• In the Azure Portal, navigate to “Storage accounts” and verify that masterfda001sta appears in the chosen region.
• In “Activity log” for the resource group, confirm the Create Storage Account operation shows Succeeded.
To fix this, you need to find the list of regions you're allowed to use. Here's how you can find that list:
1.In your Azure account, go to the Activity log for your project.
2.Look for the event where you tried to create the storage account—it will have a red "Error" status.
3.Click on that event, and then click on the JSON tab. This shows all the technical details.
4.Look for a message that lists the allowed regions. It should say something like, 'You can create resources in the following regions: <region1>, <region2>, <region3> only.'
Once you know the allowed regions, try creating your storage account again and choose one of those regions from the list."
Reference document:
https://learn.microsoft.com/en-us/azure/governance/policy/overview
Give that a try and let us know if it works!
Thanks,
Pranitha