You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/durable-functions-configure-durable-functions-with-credentials.md
+19-12Lines changed: 19 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,15 +62,20 @@ Before you can use your app's managed identity, make some changes to the app con
62
62
63
63

64
64
65
-
1.To link your Azure storage account to the application, add *any* of the following settings:
65
+
1.Add a setting to link your Azure storage account to the application.
66
66
67
-
* An account name:
67
+
Use *one of the following methods* depending on the cloud that your app runs in.
68
+
69
+
***Azure cloud**: If your app runs In *global Azure*, add a setting that identifies an Azure storage account name:
***Non-Azure cloud**: If your application runs in a cloud outside of Azure, you must add a specific service URI (endpoint) for the storage account instead of an account name.
76
+
77
+
> [!NOTE]
78
+
> If you're using [Azure Government](../../azure-government/documentation-government-welcome.md) or any other cloud that's separate from global Azure, you must use the option to provide a specific service URL. For more information about using Azure Storage with Azure Government, see [Develop by using the Storage API in Azure Government](../../azure-government/documentation-government-get-started-connect-to-storage.md).
74
79
75
80
*`AzureWebJobsStorage__<blobServiceUri>`
76
81
@@ -86,10 +91,7 @@ Before you can use your app's managed identity, make some changes to the app con
86
91
87
92
You can get the values for these URI variables in the storage account on the **Endpoints** tab.
88
93
89
-

90
-
91
-
> [!NOTE]
92
-
> If you're using [Azure Government](../../azure-government/documentation-government-welcome.md) or any other cloud that's separate from global Azure, you must use the option to provide a specific service URL. For more information about using Azure Storage with Azure Government, see [Develop by using the Storage API in Azure Government](../../azure-government/documentation-government-get-started-connect-to-storage.md).
94
+

93
95
94
96
1. Finish your managed identity configuration:
95
97
@@ -155,15 +157,20 @@ In the Azure portal, run and test the application. To run and test the app local
155
157
156
158
1. In the list of settings, select **AzureWebJobsStorage** and select the **Delete** icon.
157
159
158
-
1.To link your Azure storage account to the application, add *any* of the following settings:
160
+
1.Add a setting to link your Azure storage account to the application.
159
161
160
-
* An account name:
162
+
Use *one of the following methods* depending on the cloud that your app runs in.
163
+
164
+
***Azure cloud**: If your app runs In *global Azure*, add a setting that identifies an Azure storage account name:
***Non-Azure cloud**: If your application runs in a cloud outside of Azure, you must add a specific service URI (endpoint) for the storage account instead of an account name.
171
+
172
+
> [!NOTE]
173
+
> If you're using [Azure Government](../../azure-government/documentation-government-welcome.md) or any other cloud that's separate from global Azure, you must use the option to provide a specific service URL. For more information about using Azure Storage with Azure Government, see [Develop by using the Storage API in Azure Government](../../azure-government/documentation-government-get-started-connect-to-storage.md).
167
174
168
175
*`AzureWebJobsStorage__<blobServiceUri>`
169
176
@@ -179,7 +186,7 @@ In the Azure portal, run and test the application. To run and test the app local
179
186
180
187
You can get the values for these URI variables in the storage account on the **Endpoints** tab.
181
188
182
-

189
+

183
190
184
191
1. To add client secret credentials, specify the following values:
185
192
@@ -189,6 +196,6 @@ In the Azure portal, run and test the application. To run and test the app local
189
196
190
197
***AzureWebJobsStorage__tenantId**: The tenant ID that the Microsoft Entra application is registered in. Get this GUID value on the Microsoft Entra application pane.
191
198
192
-
The values to use for the client ID and the tenant ID appear on your client application’s Overview pane. The client secret value is the one that you saved in an earlier step. It isn't available after the page is refreshed.
199
+
The values to use for the client ID and the tenant ID appear on your client application’s overview pane. The client secret value is the one that you saved in an earlier step. The client secret value isn't available after the page is refreshed.
193
200
194
201

Copy file name to clipboardExpand all lines: articles/azure-functions/durable/durable-functions-create-first-csharp.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,12 +158,11 @@ The C# durable function app that you created and published by using Visual Studi
158
158
159
159
## Clean up resources
160
160
161
-
If you no longer need the resources that you created to complete the quickstart, to avoid subscription costs for the resources, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group).
161
+
If you no longer need the resources that you created to complete the quickstart, to avoid related costs in your Azure subscription, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group) and all related resources.
162
162
163
-
## Next step
163
+
## Related content
164
164
165
-
> [!div class="nextstepaction"]
166
-
> [Learn about common durable function patterns](durable-functions-overview.md#application-patterns)
165
+
* Learn about [common durable function patterns](durable-functions-overview.md#application-patterns).
167
166
168
167
::: zone-end
169
168
@@ -294,11 +293,10 @@ The C# durable function app that you created and published by using Visual Studi
294
293
295
294
## Clean up resources
296
295
297
-
If you no longer need the resources that you created to complete the quickstart, to avoid related costs in your subscription, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group) and all related resources.
296
+
If you no longer need the resources that you created to complete the quickstart, to avoid related costs in your Azure subscription, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group) and all related resources.
298
297
299
-
## Next step
298
+
## Related content
300
299
301
-
> [!div class="nextstepaction"]
302
-
> [Learn about common durable function patterns](durable-functions-overview.md#application-patterns)
300
+
* Learn about [common durable function patterns](durable-functions-overview.md#application-patterns).
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,12 +161,11 @@ The C# durable function app that you created and published by using Visual Studi
161
161
162
162
## Clean up resources
163
163
164
-
If you no longer need the resources that you created to complete the quickstart, to avoid subscription costs for the resources, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group).
164
+
If you no longer need the resources that you created to complete the quickstart, to avoid related costs in your Azure subscription, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group) and all related resources.
165
165
166
-
## Next step
166
+
## Related content
167
167
168
-
> [!div class="nextstepaction"]
169
-
> [Learn about common durable function patterns](durable-functions-overview.md#application-patterns)
168
+
* Learn about [common durable function patterns](durable-functions-overview.md#application-patterns).
170
169
171
170
::: zone-end
172
171
@@ -196,21 +195,21 @@ The Azure Functions template creates a project that you can publish to a functio
196
195
197
196
1. On **Create a new project**, search for **functions**, select the **Azure Functions** template, and then select **Next**.
198
197
199
-
:::image type="content" source="./media/durable-functions-create-first-csharp/functions-isolated-vs-new-project.png" alt-text="Screenshot of new project dialog in Visual Studio.":::
198
+
:::image type="content" source="./media/durable-functions-create-first-csharp/functions-isolated-vs-new-project.png" alt-text="Screenshot of the New project dialog in Visual Studio.":::
200
199
201
200
1. For **Project name**, enter a name for your project, and then select **OK**. The project name must be valid as a C# namespace, so don't use underscores, hyphens, or nonalphanumeric characters.
202
201
203
202
1. On **Additional information**, use the settings that are described in the next table.
204
203
205
-
:::image type="content" source="./media/durable-functions-create-first-csharp/functions-isolated-vs-new-function.png" alt-text="Screenshot of create a new Azure Functions Application dialog in Visual Studio.":::
204
+
:::image type="content" source="./media/durable-functions-create-first-csharp/functions-isolated-vs-new-function.png" alt-text="Screenshot of the Create a new Azure Functions Application dialog in Visual Studio.":::
| **Functions worker** | Select **.NET 8 Isolated (Long Term Support)**. | Creates an Azure Functions project that supports .NET 8 running in an isolated worker process and the Azure Functions Runtime 4.0. For more information, see [How to target the Azure Functions runtime version](../functions-versions.md). |
210
209
| **Function** | Enter **Durable Functions Orchestration**. | Creates a Durable Functions orchestration. |
211
210
212
211
> [!NOTE]
213
-
> If **.NET 8 Isolated (Long Term Support)** isn't visible in the **Functions worker** menu, you might not have the latest Azure Functions toolsets and templates. Go to **Tools** > **Options** > **Projects and Solutions** > **Azure Functions** > **Check for updates to download the latest**.
212
+
> If **.NET 8 Isolated (Long Term Support)** doesn't appear in the **Functions worker** menu, you might not have the latest Azure Functions tool sets and templates. Go to **Tools** > **Options** > **Projects and Solutions** > **Azure Functions** > **Check for updates to download the latest**.
214
213
215
214
1. To use the Azurite emulator, make sure that the **Use Azurite for runtime storage account (AzureWebJobStorage)** checkbox is selected. To create a Functions project by using a Durable Functions orchestration template, select **Create**. The project has the basic configuration files that you need to run your functions.
216
215
@@ -292,11 +291,10 @@ The C# durable function app that you created and published by using Visual Studi
292
291
293
292
## Clean up resources
294
293
295
-
If you no longer need the resources that you created to complete the quickstart, to avoid subscription costs for the resources, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group).
294
+
If you no longer need the resources that you created to complete the quickstart, to avoid related costs in your Azure subscription, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group) and all related resources.
296
295
297
-
## Next step
296
+
## Related content
298
297
299
-
> [!div class="nextstepaction"]
300
-
> [Learn about common durable function patterns](durable-functions-overview.md#application-patterns)
298
+
* Learn about [common durable function patterns](durable-functions-overview.md#application-patterns).
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/quickstart-js-vscode.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -365,9 +365,8 @@ The JavaScript durable function app that you created and published in Visual Stu
365
365
366
366
## Clean up resources
367
367
368
-
If you no longer need the resources that you created to complete the quickstart, to avoid subscription costs for the resources, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group).
368
+
If you no longer need the resources that you created to complete the quickstart, to avoid related costs in your Azure subscription, [delete the resource group](/azure/azure-resource-manager/management/delete-resource-group?tabs=azure-portal#delete-resource-group) and all related resources.
369
369
370
-
## Next step
370
+
## Related content
371
371
372
-
> [!div class="nextstepaction"]
373
-
> [Learn about common durable function patterns](durable-functions-overview.md#application-patterns)
372
+
* Learn about [common durable function patterns](durable-functions-overview.md#application-patterns).
0 commit comments