18,062 questions
0
votes
2
answers
184
views
Azure Function App works better without connected storage account than with it
I have function apps (5 of them) connected to single app service (B1 plan). For last 2 years they were working without connected storage account (do not know how exactly this is possible that they did ...
0
votes
1
answer
245
views
ERROR: The specified module 'ExchangeOnlineManagement' was not loaded because no valid module file was found in any module directory
I have created an Azure function under consumption plan, that uses PowerShell, then inside the run.ps1, i added this code, to remove a user from all the groups assigned to the user:-
and the following ...
0
votes
1
answer
105
views
Can I run Power Shell scripts inside my Azure Function on .NET 8.0?
I have an Azure Function running under premium plan, with these settings:
I am running a .NET 8.0 application which integrates with those main components:
Azure SQL
External API
SharePoint lists
I ...
0
votes
2
answers
295
views
Azure Functions local.settings.json not copied correctly
I create a new project with an Azure Function in .NET 8. In my local.settings.json file, I create a time trigger like this:
{
"IsEncrypted": false,
"Values": {
&...
0
votes
1
answer
396
views
404 The specified queue does not exist - for blob trigger Azure Function
I'm making a simple Azure Function that works on a blob trigger.
I decided to deploy it using the CLI. I can see the function in my Azure Functions overview tab. Let me give a little bit of a context ...
0
votes
1
answer
127
views
Azure Service Bus Trigger function failing unable to allocate handlers
I'm developing an Azure Service Bus trigger function with MassTransit, and I'm getting the following error messages when the bus is injected with about 10K messages in a short time (~5 mins).
The ...
-1
votes
2
answers
131
views
Using Terraform Get a Azure Function 'defaultkey'
I am using Terraform to deploy both an Azure "function app" and "function" which is successful.
Now in terraform i now need to get the 'deafult key' of the function - this is what ...
0
votes
2
answers
106
views
Java Azure function fails to start with error "Azure.RequestFailedException : This request is not authorized.."
I have a java azure function with blob triggers. We are moving from connection string based
authentication to managed identity based authentication. Please find the azure function configs we have ...
0
votes
1
answer
116
views
Tracking 401s in Application Insights for Azure Function
I have a C# Azure Function application deployed to Azure, with a Http Triggered function in it, with the authorization level set to Function. The function is connected to an application insights ...
0
votes
1
answer
212
views
Azure Function App fails with "KeyBasedAuthenticationNotPermitted" even after configuring Managed Identity
I'm deploying an Azure Function App (Java 17, Premium V3 plan P1v3) where:
Azure Function runtime version: ~4
Function App is VNet integrated.
Key-Based Authentication is disabled on the Storage ...
0
votes
1
answer
77
views
It is possible to delay the pickuptime between messages in an Azure Storage queue
I am currently working on an Azure Function app. It is triggered by a storage queue. The function itself picks up the message, executes a MS Graph API call and does some small logic.
I currently have ...
1
vote
0
answers
133
views
How to dynamically update logger scope properties during function execution in .NET?
Question
I want to create a scoped logger in .NET (Azure Function v4 / v5) where the scoped properties can change during function execution.
Specifically, I want a property like RequestId and ...
0
votes
1
answer
183
views
Failed to sync triggers for function app 'funcsintest03'. Error: BadRequest - Encountered an error (BadGateway) from host runtime. (CODE: 400)
I have an Linux Azure function with runtimeStack as 'DOTNET-ISOLATED|9.0'. I am using consumption plane and AzureFunctionApp@2 Azure DevOps pipeline task to deploy my code from Azure DevOps.
- ...
1
vote
1
answer
427
views
Playwright driver not found - Docker container
I have created a Dockerfile for Azure Function that build and installs playwright into container. Install all the dependency related to Playwright. I tried with Playwright official image still it was ...
-1
votes
1
answer
182
views
Azure Function App -Calling a function in another file from function_app.py
Very simply!
I have a function app - function_app.py, trigger.py and init.py in the root
Its my first Azure Function App.
if i run the two files separately, function_app.py, trigger.py, they both ...
0
votes
1
answer
149
views
New-MgServicePrincipalAppRoleAssignment : Resource '1***1' does not exist or one of its queried reference-property objects are not present
I have an azure function and i enable its managed identity , and i got a principle id "1***1":-
Now i tried to run this command based on this official documentation from Microsoft https://...
1
vote
0
answers
89
views
Azure Function - Linux Docker - Dotnet runtime 8.0 missing
For one of our clients, based on the following blog post, we had to setup a Docker based Azure Function to run puppeteer-sharp. We are trying to run that specific process with the following ...
0
votes
0
answers
112
views
Why does my Azure Function app have latency?
I am experiencing an odd problem that I cannot find any solution for the last week.
Wednesday 16/4 ~17.00 suddenly my APIs deployed in an Azure Function app have become much slower.
The architecture ...
0
votes
1
answer
121
views
Azure Unauthenticated user where no user is supposed to be recognized
I'm using the Azure REST API to trigger a pipeline from 2 different function apps. In order to do that I'm using an HttpClient and sending a POST request with a Basic token (username:password) in the ...
0
votes
1
answer
616
views
Issues with OpenTelemetry Integration in .NET 8 Azure Function App
I have developed a .NET 8 Function App using the isolated worker model. Following the guidelines provided in the Microsoft documentation : https://learn.microsoft.com/en-us/azure/azure-functions/...
1
vote
0
answers
59
views
SignalR Service - how to set-up reconnected trigger in Node.js Azure functions
I have a SignalR Service that has Upsteam connection set up to my Azure function app. In Azure functions app I have triggers for handling client connected and disconnected events, that are working as ...
0
votes
1
answer
142
views
Call Graph API using the Azure Function managed identity is raising this error "Acces Denied"
We have an Azure Function on .NET 8.0. and we enabled the managed identity of the Azure Function. Then we run those commands as per this official MS link https://learn.microsoft.com/en-us/sharepoint/...
-1
votes
1
answer
282
views
Unable to test and run an Azure function project locally in VS Code using a git repo code
This repo has the code of an Azure function.
I want to open the repo in VS Code, test it locally and then publish the code in Azure.
I downloaded the zip and opened the unzipped folder in VS Code.
VS ...
0
votes
1
answer
470
views
Azure Function's Identity to Read/Write to SharePoint Online
We have an Azure Function that runs on a scheduled basis, and we have enabled its managed identity. Using this identity, we’ve successfully integrated the function with both Azure SQL Database and ...
0
votes
1
answer
92
views
Handling file upload in static web app with azure functions v4
i struggle with a simple file-upload to my static web app.
Im using azure function v4 to handle incoming requests.
normal requests and form-data is handled with a function like this ( body is JSON-...