skip to Main Content

Azure Deleting a function

I am trying to delete a function app so that I can recreate it but when I try to recreate it says it already exists This is the command I used to delete app az functionapp delete --name MyFunctionApp --resource-group…

VIEW QUESTION

Obtaining the Runtime version of a function app via Azure Rest API

I need to pull the Runtime version of a Function app using APIs. Calling https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites?api-version=2023-12-01 Does not appear to provide this information. Calling https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/functions?api-version=2023-12-01 does not provide the information either. Does anyone have any guidance on how I can pull…

VIEW QUESTION

Docker – .NET 8 Azure Functions Container CORS

I just containerized a .NET 8 Azure Functions app. It works, but I can't make CORS work. // Program.cs using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Configuration; using MongoDB.Driver; using APIs.Services.Azure.Storage.Queue; using APIs.Services.Cache; using APIs.Services.DocumentDB.Repositories; using APIs.Services.MongoDB.Repositories; using APIs.Services.User; using APIs.Services.Logzio; using…

VIEW QUESTION
Back To Top
Search