Tiago Matos
Tiago Matos

Reputation: 45

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

Upvotes: 1

Views: 3176

Answers (2)

ddaze
ddaze

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:

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

Upvotes: 2

Macilquham
Macilquham

Reputation: 282

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

Upvotes: 2

Related Questions