deadwards
deadwards

Reputation: 2118

Allow access to Azure Services equivalent for Azure Web Apps

We have IP address restrictions set on an Azure Web App. These work fine for applications from various locations calling into Azure for a Web App.

We now want to extend these to allow Azure services to access this resource but I cannot seem to get this working. On some other Azure resources (e.g. Azure SQL) there is a button to press that allows access from other Azure services but this does not exist on the Web Apps.

I've also tried:

Couldn't find any information on what the IP address range should be between two Azure services.

Upvotes: 0

Views: 300

Answers (1)

Md Farid Uddin Kiron
Md Farid Uddin Kiron

Reputation: 22457

if you want to another Azure web app(B) to access your Azure web app(A) which mapped white list, you can just add out-bound IP of web app B into A's white list .You can find B's out-bound IP here : enter image description here

I have did a quick test between two Azure web apps using webjobs http calling and it works for me.

Upvotes: 0

Related Questions