Paul Witherspoon
Paul Witherspoon

Reputation: 221

Access Azure App Service RESTful endpoints from On Premise resources using VPN

I have an on premise desktop application and I need it to hit Web APIs I have living in an App Service Web App (on an App Service Plan) in Azure.

My on premise resources are connected over a site to site VPN and I was wondering if there is a way I can call these Web API services(in an app service) directly over the VPN instead of going to the public endpoint.

Upvotes: 1

Views: 133

Answers (1)

Martin Brandl
Martin Brandl

Reputation: 58961

The "normal" App Service Plan exists in a multi-tenant environment so this is not possible. You would need to use an ASE (App Service Environemnt) to use advanced networking features like VPN and NSG.

Upvotes: 1

Related Questions