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
4
votes
1 answer

How to Add Static Files and Folders to Azure Function Deployment in Azure

I using an Azure function app to call the API from Asp.Net core application, in azure functions I am handling statics folders and files. After deployed in Azure there is no folders and files in app service editor screen. How can I include the files…
Dev Jana
  • 41
  • 2
4
votes
2 answers

Azure storage emulator does not work with azure function docker run

I am trying to run my timer trigger azure function sample using Docker. It works fine in the visual studio both in debug and release mode. But when use docker docker run -d -p 8080:80 testdockercors The application starts and it says the below…
4
votes
1 answer

How to install apt-get packages on Azure function

Running a python Azure function on Linux consumption plan. I have been able to successfully deploy the function to Azure using VS Code. All the packacges in requirements.txt are getting installed without a problem. But now i need to install…
Guru
  • 71
  • 4
4
votes
2 answers

Why is my python timer trigger function not running at the correct time?

this is probably a noob question. I have an Azure Function that responds to HTTP requests and it works fine, I can call it from a browser or from a Python 3.8 script. I want to make another function that will have Timer Trigger and will call the…
4
votes
0 answers

How to white-list azure function app integrated with VNet for Even Grid subscription

We have function apps hosted in standard app service plan. To secure the function apps, we integrated it to VNet and allowed traffic only from API Management service. Now, we want to allow traffic from Event Grid (it has IoTHub and SignalR…
Asif Ali
  • 61
  • 4
4
votes
1 answer

An azure function app will trigger all the deployment slots?

I have a function app with 2 slots (staging and prod), both of them will trigger the upload of a file in the same blob storage. My question is: if both of them will trigger the same blob storage (but act differently), the time I upload a file to…
4
votes
1 answer

SendGrid is not an attribute class

I have installed SendGrid Nugget but I am still not able to use it in my code. I keep getting this error: SendGrid is not an attribute class Even though I think I have installed everything there is to install: What am I missing here? Could be…
SamuraiJack
  • 5,131
  • 15
  • 89
  • 195
4
votes
2 answers

Azure SignalR Connection String for Azure Function App ARM template

I would just like to ask if there is an ARM template function that can get the Azure SignalR connection string.
4
votes
1 answer

Azure Function Apps - Se in the admin portal how many instances that are running currently

Is there any way to see how man instances are running in a Function App in the admin portal? I tried looking in the live metrics but it just shows incomming requests and not the amount of running instances.
Thomas Segato
  • 4,567
  • 11
  • 55
  • 104
4
votes
1 answer

Dependency Injection failing in Azure function once deployed but works locally

I have a class which has a public constructor which takes SqlConnection as parameter. private readonly SqlConnection _sqlConnection; public Sample(SqlConnection sqlConnection) { _sqlConnection = sqlConnection; } In Startup file I am trying to…
4
votes
0 answers

Deploying Azure Function App in CI intermittently changes function key

I'm using an Azure DevOps release pipeline to deploy an Azure function app using an ARM template with an Azure resource group deployment and Azure App Service Deploy tasks. The problem I have is the function access keys change intermittently, which,…
4
votes
0 answers

“An attempt was made to access a socket in a way forbidden by its access permissions” when accessing localhost from inside an Azure Function

Disclaimer: It's a cliche but it works on my machine(!) Context: Http Triggered Azure Function App Running on Windows With a "Free Tier" option. Details: I have an Azure Function App that host and runs a JAR file that spins up a Grizzly server which…
Ricky Youssef
  • 228
  • 4
  • 10
4
votes
3 answers

How to call an Azure Function App API with Easy-Auth Enables using Active Directory from a C# Client

I have an Azure Function App with Azure Active Directory configured but when I call if from my client I keep getting an Unauthorized response. I have tried a couple different scenarios but nothing worked. Below is a snippet of the last bit of code…
4
votes
2 answers

"ModuleNotFoundError" with Azure function Apps using Python

I keep getting the error ModuleNotFoundError: No module named 'azure' for line 4 where I import azure.functions as func Below is the code for my init file that has been designed using this tutorial import logging import azure.functions as…
grand2019
  • 562
  • 2
  • 6
  • 16
4
votes
3 answers

Azure Function App - How to obtain the Invoke Url and code

I've created and successfully tested a Function App that requires the .net Framework because of a legacy library, and is set to use run-time version ~1. I'm looking for the Invoke Url and code, to help automate deployment. Following this MS article…
Case 303
  • 538
  • 10
  • 24
1 2
3
38 39