Home > Back-end >  Cannot find my plan for the new Azure Function App
Cannot find my plan for the new Azure Function App

Time:01-06

I am trying to create an Azure Function App. Before that, I created a free App Service plan. Now, as I am creating the function app, I don't see that plan in the dropdown, even though I use the same resource group, operating system and region for both plan and the function app. Thus I cannot create the function app. What am I missing?

CodePudding user response:

As Specified in this MS Doc of Azure Functions Dedicated Plan, all other SKU's like Basic to Premium are allowed except F1 (Free Tier) in Azure Functions - Dedicated Hosting Plan:

enter image description here

Practical:

enter image description here

Result: enter image description here

  • Related