'Azure Function "General Settings" is missing
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

I'm trying to change a platform of my az function or see the current platform.
Solution 1:[1]
It will be because you have created your azure function under the "Consumption (serveless)" plan. 
Which doesn't have the general settings tab
But if you create an azure function with the "App service plan" you get the general settings tab
HTH
Solution 2:[2]
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Macilquham |
| Solution 2 |



