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.
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