Reputation: 8731
I have an Azure Web App to that I'd like to secure by allowing only requests from the Azure Api Management Gateway - Consumption Tier. In order to do this I think I need to know Gateway's IP Address.
Does anyone know how to find this through the new Azure Portal?
Upvotes: 1
Views: 961
Reputation: 7810
Consumption SKU uses dynamic hosting model, so it's not guaranteed to have stable IP address. You need to look into other security measures to ensure that your backend is callable only by APIM, like using client certificate authentication.
Upvotes: 4