Is there a way to determine the outgoing IP address of a Website (not a webrole)?
I\'ve done a reverse looking up *.azurewebsites.net which returns one address, howe
You can get the "OUTBOUND IP ADDRESSES" property via PowerShell. Here is the command:
(Get-AzureRmResource -ResourceGroupName inhabit-adminservices -ResourceType Microsoft.Web/sites -ResourceName YOUR_RESOURCE_NAME).Properties.OutboundIpAddresses -Split ","
Where YOUR_RESOURCE_NAME is the name of Resource group.