Hi Nandu, To find the hosting plan for your Azure Function App:
Azure Portal: Go to Function App > Overview. Under Plan Type or Hosting Plan, check for:
- Consumption Plan (if it's listed directly)
- Premium or Dedicated (App Service) if hosted on those plans
Azure CLI:
az functionapp show --name <YourFunctionAppName> --resource-group <YourResourceGroupName> --query "properties.serverFarmId"
Cross-reference the App Service Plan details to confirm the plan type.
App Service Plan Details: In App Service Plan > Overview, check the SKU:
-
Y1
orDynamic
for Consumption Plan-
EP
for Premium Plan - Other SKUs like
S1
orP1v2
for Dedicated Plans
-
If the information helped address your question, please Accept the answer.
Luis