Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Azure Queue storage trigger for Azure Functions to fix wrong instructions for local development #125513

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion articles/azure-functions/functions-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,9 @@ The environment variables associated with the Azure SDK's [`EnvironmentCredentia
> [!NOTE]
> Local development with identity-based connections requires version `4.0.3904` of [Azure Functions Core Tools](functions-run-local.md), or a later version.

When you're running your function project locally, the above configuration tells the runtime to use your local developer identity. The connection attempts to get a token from the following locations, in order:
When you're running your function project locally with credential set to `managedidentity`, the runtime will attempt to use the managed identity endpoint, which is not available in local development environments. For local development, you should use `defaultazurecredential` instead.

With this configuration, the connection attempts to get a token from the following locations, in order:

- A local cache shared between Microsoft applications
- The current user context in Visual Studio
Expand Down