The instructions for finding outbound IPs on this page are only applicable for Web apps. How do I find the outbound IPs for a Function App?
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
@PrimalScottSmith Coincidentally I'm working on a new Azure Functions article that includes that information. Here it is:
In the Azure Resource Explorer:
id property that ends in the name of your function app.outboundIpAddresses and possibleOutboundIpAddresses. In the Cloud Shell:
az webapp show --resource-group <group_name> --name <app_name> --query outboundIpAddresses --output tsv
az webapp show --resource-group <group_name> --name <app_name> --query possibleOutboundIpAddresses --output tsv
Possible outbound addresses includes IP addresses that will be used only if the function app scales to other App Service plan pricing tiers.
The set of outbound IP addresses for a function app changes when you scale the app between the lower tiers (Basic, Standard, and Premium) and the Premium V2 tier. The list of all possible outbound IP addresses your app can use, for all pricing tiers, is in the possibleOutboundIPAddresses property.
Thanks.
I guess that the possible outbound addresses explanation also applies for Web apps, right?
Yes, and the article for web apps is here: https://docs.microsoft.com/en-us/azure/app-service/app-service-ip-addresses#find-outbound-ips
Most helpful comment
@PrimalScottSmith Coincidentally I'm working on a new Azure Functions article that includes that information. Here it is:
In the Azure Resource Explorer:
idproperty that ends in the name of your function app.outboundIpAddressesandpossibleOutboundIpAddresses.In the Cloud Shell:
Possible outbound addresses includes IP addresses that will be used only if the function app scales to other App Service plan pricing tiers.
The set of outbound IP addresses for a function app changes when you scale the app between the lower tiers (Basic, Standard, and Premium) and the Premium V2 tier. The list of all possible outbound IP addresses your app can use, for all pricing tiers, is in the
possibleOutboundIPAddressesproperty.