Skip to content

Commit 1443b77

Browse files
committed
edits
1 parent fe08aed commit 1443b77

9 files changed

+70
-66
lines changed

articles/azure-functions/durable/durable-functions-configure-durable-functions-with-credentials.md

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,20 @@ Before you can use your app's managed identity, make some changes to the app con
6262

6363
![Screenshot of the default storage settings and deleting AzureWebJobsStorage.](./media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-01.png)
6464

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.
6666

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:
6870

6971
* `AzureWebJobsStorage__<accountName>`
7072

7173
Example: `AzureWebJobsStorage__mystorageaccount123`
7274

73-
* A specific service URL (endpoint):
75+
* **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).
7479
7580
* `AzureWebJobsStorage__<blobServiceUri>`
7681

@@ -86,10 +91,7 @@ Before you can use your app's managed identity, make some changes to the app con
8691

8792
You can get the values for these URI variables in the storage account on the **Endpoints** tab.
8893

89-
![Screenshot that shows an example of an endpoint as a specific service URL.](media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-02.png)
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+
![Screenshot that shows an example of an endpoint as a specific service URL.](media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-02.png)
9395

9496
1. Finish your managed identity configuration:
9597

@@ -155,15 +157,20 @@ In the Azure portal, run and test the application. To run and test the app local
155157

156158
1. In the list of settings, select **AzureWebJobsStorage** and select the **Delete** icon.
157159

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.
159161

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:
161165

162166
* `AzureWebJobsStorage__<accountName>`
163167

164168
Example: `AzureWebJobsStorage__mystorageaccount123`
165169

166-
* A specific service URL (endpoint):
170+
* **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).
167174
168175
* `AzureWebJobsStorage__<blobServiceUri>`
169176

@@ -179,7 +186,7 @@ In the Azure portal, run and test the application. To run and test the app local
179186

180187
You can get the values for these URI variables in the storage account on the **Endpoints** tab.
181188

182-
![Screenshot that shows an example of an endpoint as a specific service URL.](media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-02.png)
189+
![Screenshot that shows an example of an endpoint as a specific service URI.](media/durable-functions-configure-df-with-credentials/durable-functions-managed-identity-scenario-02.png)
183190

184191
1. To add client secret credentials, specify the following values:
185192

@@ -189,6 +196,6 @@ In the Azure portal, run and test the application. To run and test the app local
189196

190197
* **AzureWebJobsStorage__tenantId**: The tenant ID that the Microsoft Entra application is registered in. Get this GUID value on the Microsoft Entra application pane.
191198

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.
193200

194201
![Screenshot that shows the tenant ID and client ID on a Microsoft Entra application pane.](media/durable-functions-configure-df-with-credentials/durable-functions-client-secret-scenario-04.png)

articles/azure-functions/durable/durable-functions-create-first-csharp.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,11 @@ The C# durable function app that you created and published by using Visual Studi
158158

159159
## Clean up resources
160160

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.
162162

163-
## Next step
163+
## Related content
164164

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).
167166

168167
::: zone-end
169168

@@ -294,11 +293,10 @@ The C# durable function app that you created and published by using Visual Studi
294293

295294
## Clean up resources
296295

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.
298297

299-
## Next step
298+
## Related content
300299

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).
303301

304302
::: zone-end

articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,11 @@ The C# durable function app that you created and published by using Visual Studi
161161

162162
## Clean up resources
163163

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.
165165

166-
## Next step
166+
## Related content
167167

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).
170169

171170
::: zone-end
172171

@@ -196,21 +195,21 @@ The Azure Functions template creates a project that you can publish to a functio
196195

197196
1. On **Create a new project**, search for **functions**, select the **Azure Functions** template, and then select **Next**.
198197

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.":::
200199

201200
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.
202201

203202
1. On **Additional information**, use the settings that are described in the next table.
204203

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.":::
206205

207206
| Setting | Action | Description |
208207
| ------------ | ------- |----------------------------------------- |
209208
| **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). |
210209
| **Function** | Enter **Durable Functions Orchestration**. | Creates a Durable Functions orchestration. |
211210

212211
> [!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**.
214213

215214
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.
216215

@@ -292,11 +291,10 @@ The C# durable function app that you created and published by using Visual Studi
292291

293292
## Clean up resources
294293

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.
296295

297-
## Next step
296+
## Related content
298297

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).
301299

302300
::: zone-end

articles/azure-functions/durable/quickstart-js-vscode.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,9 +365,8 @@ The JavaScript durable function app that you created and published in Visual Stu
365365

366366
## Clean up resources
367367

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.
369369

370-
## Next step
370+
## Related content
371371

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

Comments
 (0)