Reputation: 19
In Azure web app there are a number of outbound ip addresses. Clients need to whitelist these addresses to be able to access the web site. Is there a way i can have only one ip address in the outbound and keep it at all times for that website , sort of like a static ip address ?
I have tried creating a new site and seeing what it does , but a number of addresses are created .
UPDATE: Steps taken:
1. Create a virtual network (keep values as default) and created a subnet
Now if clients only whitelist the Outbound IP in the NAT the regardless of the request it should still be ok ?
Upvotes: 1
Views: 1959
Reputation: 15621
Assuming you're working with an App Service, there's this:
Get a static outbound IP
You can control the IP address of outbound traffic from your app by using regional VNet integration together with a virtual network NAT gateway to direct traffic through a static public IP address. Regional VNet integration is available on Basic, Standard, Premium, PremiumV2 and PremiumV3 App Service plans. To learn more about this setup, see NAT gateway integration.
Source: Inbound and outbound IP addresses in Azure App Service
Upvotes: 0