This is the first time I've published a web app on Azure. I have a SQL Server database on Amazon AWS that I'm connecting to. I need to set the security group to allow the Azure Web App to connect. How do I get the IP address of the Azure web app? From what I understand about Azure, the web apps have a rotating IP address because they're on shared servers. What can I tell the security group to allow?
Asked
Active
Viewed 981 times
2 Answers
4
Check this Azure Outbound Address
There can be only 4 IPs your web app can have. Add 4 rules to your SG, one for each IP. It is much safer than allowing a larger CIDR block.

helloV
- 50,176
- 7
- 137
- 145
-
Where do I get those four IPs? – madvora Jul 28 '15 at 10:49
-
Check the link mentioned in my answer or Azure Resource Explorer: https://resources.azure.com – helloV Jul 28 '15 at 14:18
-
That's awesome. Thanks for the link. I got it to work. – madvora Jul 28 '15 at 20:21