I have deployed my web app to Azure, but any attempt to write to my blob storage fails. I have spent quite a few hours searching and changing various things in Azure, but I cannot figure this out. The app code is functioning correctly (local dev pc can write to the blob storage).
The Azure setup I have is an App Service and a Storage account.
The Azure app can read from the blob storage, but cannot write. If I change the network settings on the storage account to "Enabled from all networks" the app is then able to write to the blob (but for obvious reasons, this is not the solution).
To back this up, I can write to the blob storage on Azure from my development PC by adding my IP to the firewall address range (when public access networks is set to "Enabled from selected networks").
In easy steps, what do I need to do to only allow my App Service to write to my blob storage?
I've tried too many things to list and at a loss of what to do - I need a little help.
Thank you.