VS Code and Azure Functions: Zip Deploy Successful but No Functions Found

Timothy J. Harpster 0 Reputation points
2025-05-08T04:03:04.6066667+00:00

I successfully completed a zip deployment for my Azure Functions using VS Code, but no functions are recognized in the Azure portal.

omni app function help 3

Here are the steps taken:

Installed Azure Tools and Azure Functions Core Tools via (Ctrl + Shift + P).

Followed the setup instructions from this answer:

Ran func init <foldername> --model V4 to create the workspace with node_modules (3k+ files) and the necessary JSON files.

Created functions using func new.

npm install @azure/ai-form-recognizer

npm install @azure/functions

Started the function with func start. This just locked up so I CTRL-C

I right click on my function, click deploy to function. The result is what you see in the image.

Despite these steps, the functions were deployed to my function storage account as a zip file, and the files were unzipped in the function app, but they are not recognized (as shown in the image).

Azure setup details:

Two storage accounts: one for the Function App and another for the app.

The functionStorage account has managed identity roles set for reading and writing blobs, tables, and queues.

Using a Flex Consumption plan with a pay-as-you-go subscription.

Environment variables for the Function app: APP_STORAGE_ACCOUNT_KEY, APPLICATIONINSIGHTS_CONNECTION_STRING,

AzureWebJobsFeatureFlags, AzureWebStorage__<funcname>, DEPLOYMENT_STORAGE_CONNECTION_STRING, FUNC_STORAGE_ACCOUNT_KEY, FUNCTIONS_EXTENSION_VERSION are all properly set in both the workspace local settings and Azure Function - Settings - Environment Variables - App Settings (and SQL_CONNECTION STRING in Connection strings).

Node.js version: 22, and the storage account is connected.

After investing four full days into troubleshooting this issue, I still cannot get the functions to be recognized. Assistance would be greatly appreciated.




Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,752 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Shireesha Eeraboina 2,825 Reputation points Microsoft External Staff Moderator
    2025-05-12T15:14:42.39+00:00

    Hi Timothy Harpster,

    Thank you for your patience and for sharing your feedback on the Q&A community platform. I’m glad to hear that you were able to resolve your issue, and I appreciate you sharing your solution! Your contribution is valuable and can help others in the community facing similar challenges.

    As per the Microsoft Q&A community policy, "The question author cannot accept their own answer. They can only accept answers by others"

    I’m reposting your solution here so you can mark it as accepted if it resolves your query:

    "The Function App issue by setting up resources correctly and enabling managed identity. They used GitHub Actions for deployment and linked the repo through Azure Deployment Center. All necessary environment variables were added. After pushing changes via VS Code with the right .yml config, the deployment worked"

    Thank you again for your time and patience throughout this issue.  

    Please don’t forget to Accept Answer and Yes for "was this answer helpful" wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments

Your answer

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