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

Unable to build docker compose with Azure Function project in Visual Studio 2019

I'm trying to add an Azure Function project to a docker-compose file created in Visual Studio 2019 (16.7.6), but this causes the solution to fail to build. (Docker for Windows 2.4.0.0 (48506), with WSL2 support enabled, running in Linux container…
MarkdotH
  • 353
  • 1
  • 2
  • 9
2
votes
3 answers

How to return function app keys from a terraform module

I am creating a webapp and a function. The web app calls the function. my terraform structure is like this main.tf variable.tf module/webapp module/function in the main.tf I call module/function to create the function and then I call module/webapp…
Tauqir
  • 369
  • 1
  • 5
  • 15
2
votes
1 answer

How do Azure Function Apps handle Client Certificate Auth?

Hopefully I can make this clear enough. Goal: Client Certificate-Authenticated Azure Function Scenario: Azure Function App with: HTTPS Only: set to Yes Client certificate mode: set to Require HTTP-triggered Azure Function (Python)…
2
votes
1 answer

Azure App Configuration from Azure function

I am accessing my configuration stored in Azure Appconfiguration. I am using SDK (Azure.Data.AppConfiguration) from Azure function. Following the example from…
2
votes
1 answer

Azure function apps - changing from premium plan to app service plan

I have an existing function app that is currently running on a premium plan (EP1 pricing tier). I would like to swap to an app service plan (S1 pricing tier) to hopefully save some budget. I created the new app service plan that I want to swap to,…
Michelle
  • 31
  • 2
2
votes
2 answers

Azure Functions -> Can not inject IServiceProvider or IFunctionsHostBuilder into factory class constructor

I am referring to this link that explains how to implement DI in Azure functions. I want to implement a Factory pattern where my Factory class should be able to resolve other dependencies while constructing the factory object. Here is the…
2
votes
2 answers

how to create a sub folder in azure storage account and copy the files by using azure function App

I have two folders in my storage account Source and destination folders I want to add Demo folder in my Source folder and I want to copy my source folder files to Demo folder and delete all my source folder files after copying in to Archieve…
2
votes
1 answer

Azure function app - Microsoft.WindowsAzure.Storage: Duplicate setting 'AccountName' found

I am deploying Azure function app using terraform code below. resource "azurerm_function_app" "function_app" { name = var.function_app_name resource_group_name = var.resource_group_name location =…
2
votes
1 answer

Accessing Key Vault secrets securely

I wrote a program in Powershell which runs on a schedule in an Azure Functions app. To avoid hard-coded credentials, I created an Azure Key Vault to store the secrets. I created a managed identity in the Azure Function, created the secrets in Azure…
MAK
  • 125
  • 2
  • 13
2
votes
2 answers

Retrying a message on azure service bus after an elapsed time?

Problem: I need to reschedule/defer a message to be processed after a user defined elapsed time as the receiver. Goal: After a HttpReponseException of ServerUnavailable, I would like to retry processing of the message after 30 minutes. It must also…
2
votes
1 answer

How to build/deploy a Python Azure Function App using an internal pypi

I'm using the command func azure functionapp publish to publish my python function app to Azure. As best I can tell, the command only packages up the source code and transfers it to Azure, then on a remote machine in Azure, the function app is…
Bryant
  • 3,011
  • 1
  • 18
  • 26
2
votes
1 answer

Removing Messages after Processing Azure Storeage Queues with Azure Function

I am a bit confused as to if I should be removing messages explicity after my Azure Function has processed the message. I have an Azure Function that is triggerd when a new message is put on to Azure Storeage Queue. When my code has finished…
Ayo Adesina
  • 2,231
  • 3
  • 37
  • 71
2
votes
1 answer

Azure Blob Trigger Not Firing

I am creating an Azure Blob Storage Trigger which is supposed to run every time a new file is dropped into the blob. { "scriptFile": "__init__.py", "bindings": [ { "name": "myblob", "type": "blobTrigger", "direction":…
2
votes
1 answer

Create a Azure function in Python on Visual Studio Code to trigger queue

I am trying to Create a Azure function in Python on Visual Studio Code to trigger queue. also i am trying to Get data from queue and save messages from queue in sql server using python. Can anyone help?
2
votes
1 answer

Azure function configuration to log everything without any sampling to the Application Insights

I don't want any sampling and want to log all the data in requests, customEvents, traces and exceptions. Will having the following host.json ensure that all of the data logged via a telemetry object inside the Azure function is present consistently…