Azure App Service Scripts
This page lists some scripts useful for operating with [[azure-app-service]].
List the available runtimes
You can see the list of available runtimes for Azure App Service instances by specifying the OS, which can only be Linux or Windows
az webapp list-runtimes --os-type linuxor
az webapp list-runtimes --os-type windowsList available outbound addresses
List available IP addresses
az webapp show \
--resource-group <group_name> \
--name <app_name> \
--query outboundIpAddresses \
--output tsvTo find all possible outbound IP addresses for your app, regardless of pricing tiers, run the following command in the Cloud Shell.
az webapp show \
--resource-group <group_name> \
--name <app_name> \
--query possibleOutboundIpAddresses \
--output tsvBacklinks
Multitenant App Service networking
See [[azure-app-service-scripts#List available outbound addresses]].
AZ-204 - Developing Solutions for Microsoft Azure
- List available runtimes by OS: [[azure-app-service-scripts#List the available runtimes]]
Azure App Service on Linux
[[azure-app-service-scripts#List the available runtimes]]