Azure Function "General Settings" is missing

2.7k Views Asked by At

I've recently been messing with Azure Functions and I noticed that one of my Azure Functions is missing a configuration tab.

The tab in question is this "General Settings" and I need to change one of the settings there. Does anyone know how I can access this tab? Can I do something about it? Or at least know why this happens?

I leave below 2 prints that show the difference between two Azure Functions that I have.

Azure Function that is missing Azure Function that is missing

Tab I want to use Tab I want to use

I'm trying to change a platform of my az function or see the current platform.

2

There are 2 best solutions below

1
On

It will be because you have created your azure function under the "Consumption (serveless)" plan. enter image description here

Which doesn't have the general settings tab

enter image description here

But if you create an azure function with the "App service plan" you get the general settings tab

enter image description here

HTH

2
On

Azure Functions on Linux on the "Consumption (Serverless)" Plan do not have the "General Settings" tab.

To get the "General Settings" Tab either:

  • Switch your function to an "App service plan" or "Functions Premium" Plan.
  • Or change the operating system to Windows.

(At least as of today 2022-04-18)

I found this out by trying it out because I could not find any documentation or information about this feature/behavior.