Function App Cannot Create within Azure Portal

NT 25 Reputation points
2024-02-08T15:36:03.8833333+00:00

Capture d’écran (7)

Seems there have been two changes that are getting in the way of creating functions after having created a function ressource.

  1. There is no longer the "Function f(x)" under the left menu called Functions, and seems we can only access it now from the Overview section. Why not.
  2. When accessing that from the Overview section, there isn't a possibility for me to create a serverless function directly in Azure Portal.

My question is therefore, how can I create a function direclty in Azure Portal, given these changes in UI?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,542 questions
0 comments No comments
{count} vote

Accepted answer
  1. JananiRamesh-MSFT 23,011 Reputation points
    2024-02-08T18:11:28.8966667+00:00

    @NT Thanks for reaching out. It is true that the Azure Portal UI has changed recently, and the "Function f(x)" option is no longer available in the left-hand menu. Instead, you can access the Functions from the "Overview" section of the Azure Portal.

    Portal only supports creating functions using scripting languages such as JavaScript, Python, and PowerShell. If you want to create a compiled function, you will need to use a development environment such as Visual Studio or Visual Studio Code to create and deploy your function.

    do let me know incase of further queries, I would be happy to assist you.

    Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.

    4 people found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. Akshay Raut 66 Reputation points
    2024-03-17T14:34:20.4333333+00:00

    If you had selected .NET as the Stack then you will need to change a setting value in the Environment Variables section of your Function app -> App Settings -> "FUNCTION_WORKER_RUNTIME" from "dotnet-isolated" to "dotnet", and then save this change. When you go back to Overview, you can find the "Create in Azure Portal" option will appear.

    If you selected any other stack, this option should be visible by default.

    7 people found this answer helpful.

  2. Pardeep Kuamar 0 Reputation points
    2024-06-14T10:45:17.52+00:00

    Thanks It worked

    0 comments No comments