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

619 questions
3
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
  • 208
  • 4
  • 8
2
votes
1 answer

Azure Function Host to give a Message in case of invalid URI path:

Azure Function Host to give a Message in case of invalid URI path: Hi, I'm using an Azure Function and testing it through Postman. My requirement is, when we pass the invalid URI path but the correct Host... we are getting Status: 404 Not Found. But…
2
votes
1 answer

What happens to a queued message from a Azure Log App + Azure Queue?

Question Does the Azure Queue step (within the Logic App) auto-dequeue messages? Here's some context: I have a logic app which is setup to insert a string into an azure queue. Upon being enqueued, a function app is invoked via a queue trigger. By…
AlvinfromDiaspar
  • 5,868
  • 13
  • 63
  • 120
2
votes
1 answer

PowerShell unable to find type of exception in try/catch block

I'm running a PowerShell Function App (~3) which uses the Az PowerShell module to manage a Storage Account. If any of the operations I carry out result in an error, I am unable to check for specific types in a try/catch block. It is important to…
David Gard
  • 8,944
  • 25
  • 89
  • 182
2
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…
2
votes
1 answer

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…
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

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
  • 85
  • 10
2
votes
1 answer

Authorize Azure Function Event Grid Trigger through Azure AD B2C

I have an Azure Event Grid Trigger Inside my Function's App. The Function is subscribed to Event Grid Topic through an Event Subscription. The Function works perfectly and is triggered when I have no Authentication Configured inside the…
2
votes
2 answers

How do you set the java version while creating Azure Function App using Terraform?

In the Azure Portal I can set the Java Version like follows: portal image In the terraform config file I can only set the Azure Function version using: resource "azurerm_function_app" "function-app" { name = "test" location…
2
votes
0 answers

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
  • 21
  • 1
2
votes
0 answers

How to use different Connection strings for Azure SignalR Service in Function Apps?

Alright, so we have multiple signalR services and what we want to do is when our code is deployed, we want the connection string to be picked from our custom configuration file instead of the function App settings. This is the negotiate function.…
zetawars
  • 875
  • 10
  • 23
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

Trying to create docker container function app, when i do docker run getting the error "Storage not defined"

Following the microsoft document (https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-function-linux-custom-image?tabs=bash%2Cportal&pivots=programming-language-python) but for Azure Blob Storage trigger template. When i run…
2
votes
2 answers

Orchrestrate multiple Azure Functions (powershell & C#)

I have 2 Azure Functions - Powershell. One will Resume a PowerBI Embedded Capacity and the other will Pause it. Then I have 1 Azure Function - C# that has to run once the PowerBI Embedded Capacity is running. So in order to do that I will need an…
VAAA
  • 12,647
  • 20
  • 110
  • 213
1 2
3
41 42