An Azure service that offers file shares in the cloud.
Hi Dennis Pedini,
Welcome to Microsoft Q&A Platform
To keep your integration service and data entirely in Brazil (so SEFAZ-ES will accept your files), you’ll want to:
Deploy your compute in the Brazil South region
- Any VM, App Service, Functions, AKS node pool, etc., you spin up in “Brazil South” will run from Brazilian datacenters and use Brazilian IPs.
- If you need a static outbound IP for your web service calls, front your VNet with a NAT Gateway (or reserve a Public IP on your VM/App Service Environment) in Brazil South.
Use regional-only storage options
- For Azure Storage accounts, pick LRS or ZRS replication so your blobs/files stay at rest within Brazil. Avoid GRS/RA-GRS because that geo-replicates to the paired region (which for Brazil South is outside Brazil).
- If you need file shares (SMB/NFS), create them in the Brazil South storage account and mount them from your Brazil-deployed compute.
Keep any downstream databases or resources in the same region
- Azure SQL Database active geo-replication can replicate outside Brazil, so don’t enable it unless it’s another Brazil South secondary.
- Likewise, any cache, Key Vault, or supporting resource should live in Brazil South.
Confirm no hidden cross-region fallbacks
- Some non-regional services (like Microsoft Entra ID) may store metadata outside your region—just be aware that identity tokens might traverse beyond Brazil, though your payloads (the files you’re sending) stay local.
Once everything is running in Brazil South with regional-only redundancy, your outbound calls to SEFAZ-ES will originate from a Brazilian IP and your data at rest will be confined to Brazil’s boundaries.
If the above steps did not help resolve your issue, please feel free to share the details in a private message so we can proceed with further troubleshooting over a Teams call. I am happy to connect with you on Teams to investigate and resolve the issue.
Reference:
Azure for secure worldwide public sector cloud adoption – Data residency
Data locations for Azure DevOps
Region availability for Oracle AI Database@Azure (shows Brazil South & Southeast regions)
Introduction to Azure Storage (replication options & regional considerations)
Please
and “up-vote” wherever the information provided helps you, **this can be beneficial to other community members.