Skip to content

Commit b2e9194

Browse files
committed
update storage &path
1 parent b317e2a commit b2e9194

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

articles/azure-functions/durable/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
href: quickstart-netherite.md
4040
- name: Configure storage provider - MSSQL
4141
href: quickstart-mssql.md
42+
- name: Configure Durable Functions with Azure Active Directory
43+
href: durable-functions-configure-df-with-credentials.md
4244
- name: Tutorials
4345
items:
4446
- name: Function chaining

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ Navigate to your Azure function app’s **Configuration** page and perform the f
5757

5858
* **AzureWebJobsStorage__accountName**: For example: `mystorageaccount123`
5959

60-
* **AzureWebJobsStorage__blobServiceUri**: MyBlobEndpoint;
60+
* **AzureWebJobsStorage__blobServiceUri**: Example: `https://mystorageaccount123.blob.core.windows.net/`
6161

62-
**AzureWebJobsStorage__queueServiceUri**: MyQueueEndpoint;
62+
**AzureWebJobsStorage__queueServiceUri**: Example: `https://mystorageaccount123.queue.core.windows.net/`
6363

64-
**AzureWebJobsStorage__tableServiceUri**: MyTableEndpoint.
64+
**AzureWebJobsStorage__tableServiceUri**: Example: `https://mystorageaccount123.table.core.windows.net/`
6565

6666
> [!NOTE]
6767
> If you are using [Azure Government](../../azure-government/documentation-government-welcome.md) or any other cloud that's separate from global Azure, then you will need to use this second option to provide specific service URLs. The values for these settings can be found in the storage account under the **Endpoints** tab. For more information on using Azure Storage with Azure Government, see the [Develop with Storage API on Azure Government](../../azure-government/documentation-government-get-started-connect-to-storage.md) documentation.
@@ -132,11 +132,11 @@ To run and test in Azure, specify the followings in your Azure function app’s
132132

133133
* **AzureWebJobsStorage__accountName**: For example: `mystorageaccount123`
134134

135-
* **AzureWebJobsStorage__blobServiceUri**: MyBlobEndpoint;
135+
* **AzureWebJobsStorage__blobServiceUri**: Example: `https://mystorageaccount123.blob.core.windows.net/`
136136

137-
**AzureWebJobsStorage__queueServiceUri**: MyQueueEndpoint;
137+
**AzureWebJobsStorage__queueServiceUri**: Example: `https://mystorageaccount123.queue.core.windows.net/`
138138

139-
**AzureWebJobsStorage__tableServiceUri**: MyTableEndpoint.
139+
**AzureWebJobsStorage__tableServiceUri**: Example: `https://mystorageaccount123.table.core.windows.net/`
140140

141141
The values for these Uri variables can be found in the storage account under the **Endpoints** tab.
142142

0 commit comments

Comments
 (0)