What am I trying to achieve
Connect to an Azure BLOB storage account that sits behind a firewall through an Azure Function.
Steps Taken so Far
- Azure Function developed and tested against public storage account which works as expected.
- Following Azure Resource Explorer for my Azure Function I find out the outbound addresses(
"outboundIpAddresses"
entry) and I add them in the firewall of the storage Account.
Issue
While trying to run the Azure Function against the storage account with the firewall I am getting a Status: 500 Internal Server Error - This request is not authorized to perform this operation.
What am I missing here?