I am trying to access a blob trigger in Azure Functions using a managed identity but am encountering issues. I have followed the instructions in the documentation and blog posts, but the issue persists.
I have already:
- Enabled managed identity for the Function App.
- Assigned the required permissions to the managed identity on the Azure Blob Storage account.
Despite these steps, my function still cannot access the blob trigger.
Has anyone encountered this issue or can provide further guidance on resolving this?
Environment:
Azure Functions v4 Using managed identity for authentication Blob trigger binding in JavaScript (Node.js)
Additional Question:
Is it possible to use different storage accounts for: The Azure Functions runtime (i.e., internal function execution, logs, etc.) and the trigger (i.e., blob trigger in a different storage account)?
I want to set the blob trigger in a different storage account but am unsure if this is supported or how to configure it properly.
Any insights or suggestions would be appreciated!


