Reputation: 45
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.
Upvotes: 1
Views: 3176
Reputation: 21
Azure Functions on Linux on the "Consumption (Serverless)" Plan do not have the "General Settings" tab.
To get the "General Settings" Tab either:
(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.
Upvotes: 2
Reputation: 282
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
Upvotes: 2