When creating a function app I fill in the basic information and then click next to go to storage options and the process gets hung up. What gives?

Kyle Raven 30 Reputation points
2024-05-02T22:31:38.4566667+00:00

I am trying to create a new function app using the consumption plan.

I fill out the details for the first step(give the app a name, I choose the app to be a .net app and I let the service group name its self.

I click next to move on to setting up storage, the storage page never loads and just hangs on the loading indicator for hours.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
0 comments No comments
{count} votes

Answer accepted by question author
  1. Ryan Hill 30,326 Reputation points Microsoft Employee Moderator
    2024-05-03T01:15:21.19+00:00

    Hi @Kyle Raven,

    I'm not sure what's going. It seems like a browser issue because I've never had this experience before. You can attempt the regular stuff, clear cache and cookies, try in private browsing. But what you can do is capture a HAR trace file and share it so it can be investigated further.

    Beyond that, you can use the Azure CLI to get around your issue and do a zip deploy. The following doc shows you how to do that; https://learn.microsoft.com/en-us/azure/azure-functions/deployment-zip-push#cli.

    However, you still need to create the storage account that Azure function, but essentially, you would do the following:

    az login
    az group create --name AzureFunctionsQuickstart-rg --location <REGION>
    az storage account create --name <STORAGE_NAME> --location <REGION> --resource-group AzureFunctionsQuickstart-rg --sku Standard_LRS --allow-blob-public-access false
    az functionapp create --resource-group AzureFunctionsQuickstart-rg --consumption-plan-location <REGION> --runtime dotnet-isolated --functions-version 4 --name <APP_NAME> --storage-account <STORAGE_NAME>
    func azure functionapp publish <APP_NAME>
    

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.