Skip to content

Commit f3f413f

Browse files
committed
nit
1 parent 497c35b commit f3f413f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/durable/durable-functions-configure-managed-identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ If you don't have an existing Durable Functions project deployed in Azure, we re
4040
When developing locally, it's recommended that you use Azurite, which is Azure Storage's local emulator. Configure your app to the emulator by specifying `"AzureWebJobsStorage": "UseDevelopmentStorage = true"` in the local.settings.json.
4141

4242
### Identity-based connections for local development
43-
You can use an identity-based connection for local development if you prefer. Strictly speaking, a managed identity is only available to apps when executing on Azure. When configured to use identity-based connections, a locally executing app will utilize your developer credentials to authenticate against Azure resources. Then, when deployed on Azure, it will utilize your managed identity configuration instead.
43+
Strictly speaking, a managed identity is only available to apps when executing on Azure. However, you can still configure a locally running app to use identity-based connection by using your developer credentials to authenticate against Azure resources. Then, when deployed on Azure, the app will utilize your managed identity configuration instead.
4444

4545
When using developer credentials, the connection attempts to get a token from the following locations, in the said order, for access to your Azure resources:
4646

@@ -49,7 +49,7 @@ When using developer credentials, the connection attempts to get a token from th
4949
- The current user context in Visual Studio Code
5050
- The current user context in the Azure CLI
5151

52-
If none of these options are successful, an error shows up regarding the app's inability to retrieve authentication token for your Azure resources.
52+
If none of these options are successful, an error stating that the app cannot retrieve authentication token for your Azure resources shows up.
5353

5454
#### Configure runtime to use local developer identity
5555
1. Specify the name of your Azure Storage account in local.settings.json, for example:

0 commit comments

Comments
 (0)