4,421 questions with Azure Functions tags

Sort by: Updated
2 answers One of the answers was accepted by the question author.

Azure functions must be invoked only by public static web app. How to do that?

I have a static web app which is accessible from the internet. This web app can invokes a set of azure functions that cannot be called by anyone except for the static web app.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
Azure Static Web Apps
Azure Static Web Apps
An Azure service that provides streamlined full-stack web app development.
789 questions
asked 2024-05-31T17:19:44.03+00:00
giulio francesca 0 Reputation points
accepted 2024-06-01T09:25:57.6566667+00:00
giulio francesca 0 Reputation points
0 answers

Entra Custom Authentication Extensions to Function App in a Private vNet

I have gone through the documentation on setting up a custom authentication extension, and have built a function app and configured all the parts for making a call into my function app endpoint for the On Token Issuance Start event. My function app is…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
Microsoft Entra External ID
Microsoft Entra External ID
A modern identity solution for securing access to customer, citizen and partner-facing apps and services. It is the converged platform of Azure AD External Identities B2B and B2C. Replaces Azure Active Directory External Identities.
2,687 questions
asked 2024-03-21T11:45:11.0466667+00:00
Josh Christensen 5 Reputation points
commented 2024-06-01T01:20:22.1+00:00
Ryan Hill 26,321 Reputation points Microsoft Employee
1 answer

The subscription is not allowed to create or update the serverfarm.

I'm creating a function and I keep getting the error listed below on a bad gateway. It seems this is an error since April 2024 and still no viable solution. The only solution is to open a ticket, which doesn't work if you're on a free plan trying to…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-31T16:05:38.54+00:00
Kevin O 0 Reputation points
edited an answer 2024-05-31T20:53:58.49+00:00
Andriy Bilous 10,996 Reputation points MVP
1 answer

Access Backend on VNet from public frontend

I need to deploy a frontend that will be publivly accessible but it needs to commuincate and write to a databse that must not be publicly accesible. The current setup i have is as follows: Deploy the Next JS site using Azure Static Web Apps Create a…

Azure API Management
Azure API Management
An Azure service that provides a hybrid, multi-cloud management platform for APIs.
1,824 questions
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
Azure Virtual Network
Azure Virtual Network
An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
2,204 questions
Azure Static Web Apps
Azure Static Web Apps
An Azure service that provides streamlined full-stack web app development.
789 questions
asked 2024-05-28T12:15:47.6033333+00:00
Simbarashe Kowo (Platinum Life) 0 Reputation points
answered 2024-05-31T20:46:45.44+00:00
Andriy Bilous 10,996 Reputation points MVP
2 answers

In the Azure Portal how do i open a terminal function in a function app?

There doesn't appear to be any way to add (install) python modules for an app function. For example, if my trigger function has: import csv When I save my trigger code Azure can no longer load the code - and because it cannot load it I cannot ever see…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-30T14:39:13.4066667+00:00
Larry Bredehoeft 0 Reputation points
answered 2024-05-31T18:12:05.8866667+00:00
Larry Bredehoeft 0 Reputation points
1 answer

why functions tab is not showing in my function app

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-29T17:22:50.1833333+00:00
pavan kalyan 0 Reputation points
commented 2024-05-31T17:23:19.1366667+00:00
TP 79,246 Reputation points
1 answer

Azure function event hub triggers after delay of about 5-10 seconds

I have an Azure Function v4 .NET 6 isolated app with an HTTP trigger function that writes events to an event hub. Another event hub triggered function in the same app listens to those events, performs some manipulation, and publishes them again to…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
Azure Event Hubs
Azure Event Hubs
An Azure real-time data ingestion service.
573 questions
asked 2024-05-30T13:42:14.9533333+00:00
Akshay Chauhan 46 Reputation points
commented 2024-05-31T17:05:15.3766667+00:00
Ryan Hill 26,321 Reputation points Microsoft Employee
1 answer

msdeploy causes error: Failed to download package. System.Net.WebException: The remote server returned an error: (403) Forbidden.

I'm following these instructions: https://github.com/Azure-Samples/function-app-arm-templates/blob/main/zip-deploy-arm-az-cli/README.md#steps I have a simple "hello world" C# http triggered windows azure function…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-30T22:57:17.7133333+00:00
Siegfried Heintze 1,861 Reputation points
commented 2024-05-31T16:54:34.4866667+00:00
Siegfried Heintze 1,861 Reputation points
0 answers

Reading appsettings.json in a Docker container

How can I read appsettings.json in a Docker container? I created a Docker image using mcr.microsoft.com/azure-functions/dotnet:4, but when I run the image from a container, it cannot find the appsettings.json file. I added the file to the container in…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-31T15:06:44.9733333+00:00
Paul Bush 21 Reputation points
0 answers

After migration to .NET 8 Isolated, unable to publish using Visual Studio 2022

Hi, I upgraded an Azure Function (Linux) to dotnet 8 Isolated model following the documentation. The function runs fine in local, but I cannot publish it to Azure. I get the error "The attempt to publish the ZIP file through…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-31T14:41:05.0133333+00:00
Sylvain 216 Reputation points
edited the question 2024-05-31T14:54:57.5366667+00:00
Sylvain 216 Reputation points
0 answers

Migrating Azure Function App From In-Process model to Isolated-Worker model and .NET8

After I migrated my azure function app to isolated-worker model and .net8, I deployed it to the azure and I started to get the following runtime error: Microsoft.Azure.WebJobs.Script: Error configuring services in an external startup class.: Could not…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,254 questions
asked 2024-05-31T11:40:42.4133333+00:00
Amr 0 Reputation points
1 answer

The blob trigger in azure function doesn't trigger every time

Hello, The azure function is consumtion based. We have a customer that is using WinSCP and sftp to write an xml file in the blob container. The customer write the xml file about every 30 minutes. The problem is that the azure function doesn't react…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2023-05-30T21:16:06.1633333+00:00
Tony Johansson 40 Reputation points
edited a comment 2024-05-31T08:51:39.28+00:00
Guy Rutter 0 Reputation points
1 answer

How to convert type of any block blob to append blob inside adls gen2? Is there any process or activity which will convert the type of my entire blob without changing the content?

I have a json file inside a data lake gen2 storage and that json file blob type is a block blob. I want to convert that blob type to append blob through any services of azure. Need to know the process in detail.

Azure Data Lake Storage
Azure Data Lake Storage
An Azure service that provides an enterprise-wide hyper-scale repository for big data analytic workloads and is integrated with Azure Blob Storage.
1,380 questions
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,508 questions
Azure Databricks
Azure Databricks
An Apache Spark-based analytics platform optimized for Azure.
1,984 questions
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,805 questions
asked 2024-05-31T06:30:48.3333333+00:00
Chakraborty, Nabarun (External) 0 Reputation points
answered 2024-05-31T07:45:10.9433333+00:00
Vinodh247-1375 11,721 Reputation points
0 answers

Github deploy code Fails where Func app in Vnet - auth error using OIDC

Regarding section Deploy a Service Bus trigger and HTTP trigger I get auth error IP forbidden to to deploy the code via github. Since both storage and func app are behind private end points is github expected to successfully be authorized even with a…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
Azure Virtual Network
Azure Virtual Network
An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
2,204 questions
asked 2024-05-29T06:37:27.05+00:00
Sergio Solorzano 26 Reputation points
edited the question 2024-05-31T06:58:20.0033333+00:00
Sergio Solorzano 26 Reputation points
1 answer One of the answers was accepted by the question author.

Need help with azure workbook and function app

Hi, I am trying to use a function app to make an api call to our product. I am not doing this operation from the workbook itself because I end up doing multiple api calls and lots of heavy lifting is done in workbook, instead I want the function app to…

Azure Monitor
Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
2,883 questions
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-30T01:35:25.0766667+00:00
Ashwin Venkatesha 230 Reputation points
accepted 2024-05-31T06:23:49.3333333+00:00
Ashwin Venkatesha 230 Reputation points
0 answers

Azure function Kafka Trigger and PFX file

Hi we want to use Azure function Kafka Trigger over TLSMA. Hence referring below Link1 the "sslCertificateLocation" and "sslKeyLocation" are the inputs that I must configure. Link1:…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-31T06:17:09.2366667+00:00
RK 0 Reputation points
2 answers

Storage account Requirement for function app in Premium app service plan?

When I try to create a function app in app service plan via portal storage account is a mandatory field. However when i deploy the same via bicep template its no more mandatory. Also all documents which I could find from Microsoft states the function app…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2024-05-31T04:39:31.57+00:00
RK 0 Reputation points
commented 2024-05-31T05:13:35.24+00:00
RK 0 Reputation points
3 answers One of the answers was accepted by the question author.

Is there an Azure Function trigger support for Event Grid Namespace Topic?

Hi There is an EventGridTrigger attribute for Azure Function that can be used to handle custom topic event. I wonder if there is an equivalent for Event Grid Namespace Topic with the pull model event subscription. I cannot find any example online. What…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
Azure Event Grid
Azure Event Grid
An Azure event routing service designed for high availability, consistent performance, and dynamic scale.
325 questions
asked 2024-05-30T04:42:51.3633333+00:00
Philip Leung 20 Reputation points
edited an answer 2024-05-31T04:01:57.19+00:00
James Huber 0 Reputation points
0 answers

Microsoft defender is alerting for vulnerable version of nuget package in Azure Function's ".azurefunctions/function.deps.json" file"

Hi Champs, I'm facing a typical problem with my function app and MS defender for cloud. Defender is raising issues for my deployed function(written in c#) as: Even after installing latest nuget package, "function.deps.json" file is not…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,018 questions
Microsoft Defender for Cloud
Microsoft Defender for Cloud
An Azure service that provides threat protection for workloads running in Azure, on-premises, and in other clouds. Previously known as Azure Security Center and Azure Defender.
1,228 questions
asked 2024-05-30T05:26:36.4033333+00:00
Pratim Das, Partha C 306 Reputation points
edited the question 2024-05-31T01:04:10.4133333+00:00
Pratim Das, Partha C 306 Reputation points
8 answers

cant create function app, get "This region has quota of 0 instances for your subscription"

There are several people with the same problem, but reading all threads - noone seems to have a solution yet. The region is North Europe. I have tried creating a hello world http trigger function app via visual studio, and also directly in azure…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,421 questions
asked 2022-06-06T08:05:44.127+00:00
Nutmix 36 Reputation points
edited an answer 2024-05-30T20:02:13.7966667+00:00
Sanjay Vamja 0 Reputation points