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
6
votes
3 answers

How to create Azure function App in Python without using Visual Code Studio

I want to create an Azure Function App using python language. But I don't want to use any tools like Visual Code Editor. I want to use the inline code editor of azure because my code is not that big. I created a function app with below…
6
votes
1 answer

Azure Functions App: what's the feature to publish a Docker container about?

I know that it is possible to create a Docker container based on the Azure Functions runtime. An example of this process is described in this article. The benefit is that Azure Functions can be used anywhere - I could deploy the Container to AWS if…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
6
votes
2 answers

Can I create non static Azure function class in C#, what are the consequences?

This non static class is required for constructor injection in Azure function and collection of custom telemetry events. If we create an azure function app in visual studio, it creates default with static keyword like this: public static async…
5
votes
1 answer

Blazor Client side get CORS error when accessing Azure Function using Azure Active directory

I've been trying to deploy my Blazor PWA for 2 days without any success so far, if someone has an idea of what I’m doing wrong I would be really grateful. hello I could resolve most of my issues by myself but I'm now stuck on a CORS problem using…
5
votes
4 answers

SCM_DO_BUILD_DURING_DEPLOYMENT is set to false explicitly by Azure Cli

I am using Azure Cli in Jenkins build to deploy my nodejs azure functions to azure. I need Kudu to build the npm packages to reduce the deployment time on Jenkins side. I have SCM_DO_BUILD_DURING_DEPLOYMENT = true in Azure Functions configurations…
Mori
  • 2,484
  • 5
  • 28
  • 45
5
votes
2 answers

ARM template deployed function app has no host keys and throws errors

I deployed a function app in Azure and on trying to "Code + Test" -> "Test + Run", I only see one key in the key dropdown - default (Function key): App Keys section looks like below: On running with this key, I see a 401 unauthorized…
5
votes
0 answers

Do Azure Functions have a request pipeline of some kind?

I would like to add some common authentication code to a collection of HttpTrigger Azure Functions (v3), which I'm using as an API. I know about the service-side auth associated with AuthorizationLevel.Function, but that won't work for me. The type…
RickNZ
  • 18,448
  • 3
  • 51
  • 66
5
votes
3 answers

Azure functions core tools installation is stuck in visual studio code

I have created Azure function app to execute powershell script. Wanted to run it on my local first to test it. When I run it, with or without debugging option, one popup is coming which says - "You must have the azure functions core tools installed…
5
votes
2 answers

How to deploy function app settings to azure function app using azure devops app service deployment task

I have about 20+(and growing) app settings in local.settings.json file of my .net core azure function app. The only way to add these to function app in the portal as part of the deployment is to use a long concatenated string of all appsettings in…
sajid
  • 171
  • 1
  • 9
5
votes
1 answer

Azure Function - App service plan - Installing git package

I have written an Azure Funciton API(using python runtime) to automate the git checkin process(usin gitPython) for some the work which we are doing. It works fine in my local environment. However, when i tried publishing it to azure function, the…
5
votes
1 answer

How do I run an Azure Functions App on Premise?

I currently have a .NET Core 2.1 Azure Functions app with a timer trigger. Due to a change in network landscape, the functions app in Azure no longer has network access to the database resources it needs. We've thought about repointing the…
5
votes
2 answers

EventHubTrigger function app, pass event hub name and consumer group name dynamically to event hub attribute

We know the Connection string for event hub can be used from local.setting.json file. So for the same function app in different environments, I can add the event hub connection string setting in Application settings in the azure portal. As the…
Vivek Ranjan
  • 1,432
  • 2
  • 15
  • 37
5
votes
2 answers

Why is my EF Core DbContext not bound by DI?

I have an Azure Function App with a function that runs on a blob trigger. I've proven that this function can run through the Azure Portal and responds to this blob trigger without issues... or at least it did. Now that I've added functionality which…
Jules
  • 1,677
  • 1
  • 19
  • 25
4
votes
4 answers

How can i watch for changes in my azure functions?

I am using azure functions written in NODE JS. I am starting the local server with func host start and everything works fine. But the problem is when i change something in my azure functions - index.js file for example when i add one simple console…
sdsd
  • 447
  • 3
  • 20
4
votes
0 answers

Function app misbehaving when upgraded to netcoreapp3.1 and functions v3

I'm investigating a weird behaviour happening on a function app deployed on Azure on a dedicated app service plan. When upgrading to netcore3.1 and Functions V3 the app starts erroring on connections to the SQL DB as the DTUs limit gets hit. The…
1
2
3
38 39