Skip to content

Commit 7fb880c

Browse files
committed
updated setting screenshot and wording
1 parent 41c6208 commit 7fb880c

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

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

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -91,43 +91,39 @@ To find your identity resource, select assign access to **Managed identity** and
9191

9292
### Add managed identity configuration to your app
9393

94-
Before you can use your app's managed identity, make some changes to the app configuration:
94+
Before you can use your app's managed identity, make some changes to the app settings:
9595

96-
1. In the Azure portal, on your function app resource menu under **Settings**, select **Configuration**.
96+
1. In the Azure portal, on your function app resource menu under **Settings**, select **Environment variables**.
9797

98-
1. In the list of settings, select **AzureWebJobsStorage** and select the **Delete** icon.
98+
1. In the list of settings, find **AzureWebJobsStorage** and select the **Delete** icon.
9999
[ ![Screenshot of default storage setting.](./media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-01.png)](./media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-01.png#lightbox)
100100

101101
1. Add a setting to link your Azure storage account to the application.
102102

103103
Use *one of the following methods* depending on the cloud that your app runs in:
104104

105-
- **Azure cloud**: If your app runs in *public Azure*, add a setting that identifies an Azure storage account name:
105+
- **Azure cloud**: If your app runs in *public Azure*, add the setting `AzureWebJobsStorage__accountName` that identifies an Azure storage account name. Example value: `mystorageaccount123`
106106

107-
- `AzureWebJobsStorage__accountName: < Azure Storage account name >`
107+
- **Non-Azure cloud**: If your application runs in a cloud outside of Azure, you must add the following three settings to provide specific service URIs (or *endpoints*) of the storage account instead of an account name.
108108

109-
Example: `AzureWebJobsStorage__accountName: mystorageaccount123`
109+
- Setting name: `AzureWebJobsStorage__blobServiceUri`
110110

111-
- **Non-Azure cloud**: If your application runs in a cloud outside of Azure, you must add a specific service URI (*an endpoint*) for the storage account instead of an account name.
111+
Example value: `https://mystorageaccount123.blob.core.windows.net/`
112112

113-
- `AzureWebJobsStorage__blobServiceUri: < Service endpoint >`
113+
- Setting name: `AzureWebJobsStorage__queueServiceUri`
114114

115-
Example: `AzureWebJobsStorage__blobServiceUri: https://mystorageaccount123.blob.core.windows.net/`
115+
Example value: `https://mystorageaccount123.queue.core.windows.net/`
116116

117-
- `AzureWebJobsStorage__queueServiceUri: < Service endpoint >`
117+
- Setting name: `AzureWebJobsStorage__tableServiceUri`
118118

119-
Example: `AzureWebJobsStorage__queueServiceUri: https://mystorageaccount123.queue.core.windows.net/`
119+
Example value: `https://mystorageaccount123.table.core.windows.net/`
120120

121-
- `AzureWebJobsStorage__tableServiceUri: < Service endpoint >`
122-
123-
Example: `AzureWebJobsStorage__tableServiceUri: https://mystorageaccount123.table.core.windows.net/`
124-
125-
You can get the values for these URI variables in the storage account information on the Endpoints tab.
121+
You can get the values for these URI variables in the storage account information from the **Endpoints** tab.
126122

127123
![Screenshot of endpoint sample.](media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-02.png)
128124

129125
> [!NOTE]
130-
> If you are using [Azure Government](../../azure-government/documentation-government-welcome.md) or any other cloud that's separate from public Azure, you must use the option that provides a specific service URI. For more information on using Azure Storage with Azure Government, see the [Develop by using the Storage API in Azure Government](../../azure-government/documentation-government-get-started-connect-to-storage.md).
126+
> If you are using [Azure Government](../../azure-government/documentation-government-welcome.md) or any other cloud that's separate from public Azure, you must use the option that provides specific service URIs instead of just the storage account name. For more information on using Azure Storage with Azure Government, see the [Develop by using the Storage API in Azure Government](../../azure-government/documentation-government-get-started-connect-to-storage.md).
131127
132128
1. Finish your managed identity configuration (remember to click "Apply" after making the setting changes):
133129

@@ -142,7 +138,7 @@ Before you can use your app's managed identity, make some changes to the app con
142138
![Screenshot of user identity client id.](media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-03.png)
143139

144140
> [!NOTE]
145-
> Durable Functions does *not* support `managedIdentityResourceId` when using user-assigned identity. Use `clientId` instead.
141+
> Durable Functions does *not* support `managedIdentityResourceId` today when using user-assigned identity. Use `clientId` instead.
146142
147143

148144

Loading

0 commit comments

Comments
 (0)