Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
Hi Arron Washington,
Thanks for reaching out in Microsoft Q&A forum,
Network request failed - cannot access storage endpoint. Your firewall settings may be preventing network access from this client to the storage data endpoint. CORS settings on your storage account may be preventing network access from this client."
Your storage account is blocked due to disabled public network access without proper VNet integration or private endpoints, and NSP requires a managed identity for outbound traffic.
Network Security Perimeter resource in the Azure portal, which acts as a logical security boundary for PaaS services such as Azure Storage. Once the perimeter is created, you use a profile within it to define how traffic should be evaluated. After that, the storage account is associated with the perimeter, where you choose an access mode.
Steps:
- Creating inbound rules to define who can access the storage account from public networks, such as specific IP addresses, Azure services, or subscriptions.
- Creating outbound rules to restrict where the storage account can send data, which is critical for preventing unintended data exfiltration.
- Validating access behavior before switching to Enforced mode to ensure only approved traffic is allowed.
- Enabled System-Managed Identity on the storage account using Azure CLI (no Identity blade exists in portal for storage accounts):
This resolved the NSP "MissingIdentityConfiguration" error.az storage account identity assign --name [storage-account] --resource-group [rg] --identities [SystemAssigned]
Reference:
- Network Security Perimeter for Azure Storage | Microsoft Learn
- What is a network security perimeter? - Azure Private Link | Microsoft Learn
Kindly let us know if the above helps or you need further assistance on this issue.
Please do not forget to
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.