How to Configure Environment Variables for Azure Function App in Flex Consumption Plan?
I have created an Azure Function App using the Python runtime in the Flex Consumption plan and successfully deployed a function using Core Tools. However, the environment variables set under "Environment Variables" > "App Settings"…
Azure Functions
Vulnerability: Storage accounts should prevent shared key access
I created an Azure Logic App, Azure Function App and Azure Storage Account. The Azure Logic App triggers the Azure Function. The Azure Function App is using the Azure Storage Account. In my vulnerability management dashboard I see a vulnerability…
Azure Functions
Unable to test/run Azure Function form the portal
Getting this warning message when I am trying to test/run a function through the Azure portal. Running your function in portal requires the app to explicitly accept requests from https://portal.azure.com. This is known as cross-origin resource sharing…
Azure Functions
How can I connect to Azure Function URL from Power BI Service (Power Query) with Organization account authentication?
How can I connect to an Azure Function URL from Power BI Service (Power Query) with Organization account authentication? I want to call a UDF from Power Query that makes an API call and does data transformation, which needs user context. Power Query,…
Azure Functions
c# azure function replacement in code does not propagate to portal
I'm using c#/.NET8 and the V4 Azure Functions Version. I initially wrote a bunch of function in a single project and deployed them to a specific slot on Azure. A few days ago I replaced a function (queue trigger based) by another one (time trigger…
Azure Functions
How to fix the error - Could not load file or assembly 'System.Memory.Data, Version, under the Azure Durable function
I'm building a Azure Durable function with Python framework in my local VS Code. While I'm running the function in the visual studio, I'm getting the below error. The listener for function 'Functions.orchestrator' was unable to start. Azure.Core: Could…
Azure Functions
The add + option is missing under functions.
I cannot add a function in my app. The "add" option is missing. How can I fix this?
Azure Functions
Pyodbc package is not installing during function app deployment
I am using a function app with pyodbc which consistently fails for Failed to import src.services.oauth_service: No module named 'pyodbc'. Some fixes I've attempted in order: Python Version Downgrade ODBC Driver Installation Added pymssql>=2.2.0 as…
Azure Functions
Use binding extension in code in Azure Functions (Python V2)
As shown here, the trigger file name can be used as an expression inside the code. // C# example of binding to {filename} public static void Run(Stream image, string filename, Stream imageSmall, ILogger log) { log.LogInformation($"Blob trigger…
Azure Functions
Unable to deploy because of invalid characters in the storage account name
I am following this official microsoft tutorial - link. I have completed till the stage of creating function app from azure. But the deployment part fails This is the log in the output channel 12:12:10 httpFuncApp01: Creating zip package... 12:12:10…
Azure Functions
I want to create multiple HttpTrigger functions under a single function app service s3
I want to create multiple HttpTrigger functions under a single function app service. For example, there are 2 functions, automation1 and automation2, they should be deployed under same function app service but they should be allowed to be called…
Azure Functions
Azure Functions Authentication Error
We are implementing new service, which is Azure Function App, to authenticate the Function app currently we are using client secret of App registration, though this is not an efficient way so wanted to implement UAMI(User Assigned Managed Identity), We…
Azure Functions

Azure function service bus not triggering
We have an event-driven architecture with azure functions (flex consumption plan) and a service bus. In several occurrences, we observed our azure function not being triggered by the service bus queue. The message was shown as "active" in the…
Azure Functions
I am unable to deploy an Azure Function App due to a quota limitation of 0 Dynamic instances
I am experiencing a quota limitation in my Azure subscription that is preventing me from deploying an Azure Function App. Specifically, I have reached the limit for Dynamic instances in the canadacentral region, which has a quota of 0 for this SKU. As a…
Azure Functions
Persistent CORS issue in Azure Functions
I have an Azure Function written in C# and calling the function from enterprise sharepoint. So, I have added Sharepoint URL in function's CORS but still get CORS error. The OPTIONS request returns the CORS URL in response headers and gives a 200 but POST…
Azure Functions
Best ways to authenticate from SPFx app (deployed to Teams) to Azure function
Hello, We have an SPFx (React ts) app deployed to teams and trying to authenticate to Azure function deployed on a private endpoint. Are app registrations the only way to authenticate or can we use managed identities? When I allow everything (access)…
Azure Functions
Microsoft 365 and Office | SharePoint | For business | Windows

Microsoft Teams | Microsoft Teams for business | Other
Azure Function cannot authentication to Azure DevOps API
Initially we had an anonymous Azure Function using System Assigned Managed Identity, that managed identity was added to Azure DevOps API and was able to call the API from the function. But later I wanted to call this function from SPFx app, so I added…
Azure Functions
Long Living Instance of Azure Function App
Hello, I noticed that there are instances had lifetime more than 24 hours while I did not set any "always-on" instances. I would like to ask if it is by design or such behavior was triggered by my actions?
Azure Functions
Durable Function orchestrator race condition?
have an Azure Durable Function that is triggered when users send SMS messages. I'm using the function to collect multiple messages if they arrive within a short duration, and create one consolidated message. The first message triggers the function and…
Azure Functions
Why my functions will be triggered every time I do the deployment
Why my functions will be triggered every time I do the deployment. they are timer triggered, I set the cron to trigger one time one day. Here is one example: [DisableFunction(FunctionAppSettings.DisableFunction)] …