Questions tagged [azure-function-app]

A function app is the container that hosts the execution of individual functions in the serverless framework Azure Functions.

A function app is the container that hosts the execution of individual functions in the framework.

Create a function app from the Azure portal

574 questions
1
vote
0 answers

Reference a GitLab repository in the requirements.txt Azure Functions App

My problem is: I try to reference a custom library uploaded in a personal GitLab repo, in therequirements.txt file inside a Python function that I want to upload in Azure Function Apps. I manage to do it with a GitHub account but I fail in Gitlab.…
MrPotatoServer
  • 175
  • 5
  • 15
1
vote
1 answer

Direct an Azure Function App to accept only Application/json

Direct an Azure Function App to accept only Application/json Hi, I'm using an Azure Function and testing it through Postman. My requirement is when we pass Content-Type other than "application/json", I'm expecting my Azure Function to return saying…
1
vote
3 answers

Can I setup an alert that will notify me when a configuration is updated in a function app?

Topic. I want to setup an alert when someone on my team updates a configuration in a function app. I could not find this in the docs. Is this possible?
JS noob
  • 429
  • 5
  • 14
1
vote
0 answers

Publishing Azure Function App - Error: Value Cannot be null. Parameter name

I am trying to publish my azure function app to the cloud. I get the to the point where I am able to click finish after selecting my subscription and picking which Function app. Once I press "Finish" I get this error: "Value Cannot be null.…
1
vote
1 answer

Deploy Appsettings for Azure function app using Azure Devops and Yaml and Variable group

Is there a way to deploy complete variable group variables to Azure Function app settings using Yaml. Below is the yaml code and how I am deploying variable :- variables: - group: MyDevVariable #This is my variable group name #Place where I am…
Krishna
  • 135
  • 1
  • 9
1
vote
0 answers

Deploying Terraform configurations through Azure Function App

I am trying to deploy Terraform configurations using an Azure Function. What I have done to achieve this is make a Function App that executes the terraform.exe as a process, i.e have the .exe be in the same directory as the function itself, call it…
1
vote
1 answer

How to call a function app Run from another Function app using calling function app dll and function.json

Upto now i used only one azure function http trigger do functionality. However, i got a new requirement to call a one azure function app F1 in another azure function app F2. I want to use the function app F1 using dll and function.json file in azure…
prasanthi
  • 562
  • 1
  • 9
  • 25
1
vote
1 answer

Azure Function V3 Dependency Injection Lifetime Question

I am using Azure Functions v3 and DI. I have a service that I setup with a transient lifetime in my StartUp.cs (using: builder.Services.AddTransient(s => coreApiService);) and then I inject into my Azure Function class. The Azure…
1
vote
1 answer

If an Azure Function App scales down to 0 in a Consumption Plan, how can it listen to incoming events from Event Hub?

Suppose I have an Azure Function App in a Consumption Plan listening on an Azure Event Hub. According to this documentation, the number of function app instances can scale down to 0 if there are no incoming events. In my understanding, every…
1
vote
0 answers

How does azure function app works with parallel request

In azure function app, how does the runtime or host manages multiple requests? Like in regular web api project or app service one instance can handle multiple request. Is that true that in azure function app, same function host or instance cannot be…
Manish Rawat
  • 1,142
  • 1
  • 18
  • 34
1
vote
1 answer

not able to close connection python gremlin client

I have been using https://github.com/Azure-Samples/azure-cosmos-db-graph-python-getting-started project to work with cosmosdb-gremlin. project work fine when i am running it as python function on windows. now i am trying to convert this code into…
1
vote
2 answers

How to run multiple C# Az function apps locally in Visual Studio Code on Mac that are created in visual studio 2019 windows?

Stack overflow users. I am new to development on Mac. I have no option to use windows machine, I'm using basic spec Macbook pro 2015 which restricts me on installing virtual box or parallel to run windows. Which leaves me no choice but to use Mac.…
1
vote
1 answer

Need Clarification : Azure Function app integration with Azure Key Vault

I am new to Azure Functions and Azure Key vault. I am using Azure function version V3 for my project. To Integrate Azure Key vault with Azure function, I have created both the resources in Azure and added secrets in Azure key vault. I have inserted…
Krishna
  • 135
  • 1
  • 9
1
vote
1 answer

Restrict Visual Studio Code -> Deploy to function app

Deploying code directly to a function app through visual studio code extension is really handy feature but we want to restrict our team using this feature to follow strict CI/CD pipeline. Is there any way we can block deployment to Function App…
1
vote
1 answer

PowerShell Azure function reference other files in script

I have a function am working on, I have placed an xml file in the same folder as the function. I'm trying to get this folder using syntax like this: ./file.xml or ~/functionfolder/file.xml .. but nothing is working. I saw other posts online…