Reputation: 21
All of the questions I found seems to check on functions v3, is using identity on connection to Azure storage queues on queue trigger and durable functions possible in Azure functions v1?
I couldnt find any official relevant docs that can help answer this question.
Upvotes: 0
Views: 153
Reputation:
This Azure Managed Identity
feature supports from Azure Functions v1 (.NET Framework Versions.
But I found one example from official documentation i.e.,
Tutorial of Connecting to SQL Database from .NET App Service using a managed identity.
This process/tutorial is covered for both .NET Framework 4.8 (v1 Azure Functions) and .NET Core (v2, v3, v4).
In this GitHub Repo of Azure Managed Identity, we have information for all the programming languages along with detailed explanations.
And there are few Questions in Stack Overflow related to issues coming in using the Managed Identity in Azure Functions v1 (.NET Framework versions).
Upvotes: 0