Skip to content

Commit 00d83e3

Browse files
committed
correcting setting values
1 parent 53d8a09 commit 00d83e3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,27 +104,27 @@ Before you can use your app's managed identity, make some changes to the app con
104104

105105
- **Azure cloud**: If your app runs in *public Azure*, add a setting that identifies an Azure storage account name:
106106

107-
- `AzureWebJobsStorage__<accountName>`
107+
- `AzureWebJobsStorage__accountName: << Azure Storage account name >>`
108108

109-
Example: `AzureWebJobsStorage__mystorageaccount123`
109+
Example: `AzureWebJobsStorage__accountName: mystorageaccount123`
110110

111111
- **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.
112112

113113
> [!NOTE]
114114
> 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 to provide a specific service URL. 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).
115115
116116

117-
- `AzureWebJobsStorage__blobServiceUri`
117+
- `AzureWebJobsStorage__blobServiceUri: << Service endpoint >>`
118118

119-
Example: `https://mystorageaccount123.blob.core.windows.net/`
119+
Example: `AzureWebJobsStorage__blobServiceUri: https://mystorageaccount123.blob.core.windows.net/`
120120

121-
- `AzureWebJobsStorage__queueServiceUri`
121+
- `AzureWebJobsStorage__queueServiceUri: << Service endpoint >>`
122122

123-
Example: `https://mystorageaccount123.queue.core.windows.net/`
123+
Example: `AzureWebJobsStorage__queueServiceUri: https://mystorageaccount123.queue.core.windows.net/`
124124

125-
- `AzureWebJobsStorage__tableServiceUri`
125+
- `AzureWebJobsStorage__tableServiceUri: << Service endpoint >>`
126126

127-
Example: `https://mystorageaccount123.table.core.windows.net/`
127+
Example: `AzureWebJobsStorage__tableServiceUri: https://mystorageaccount123.table.core.windows.net/`
128128

129129
You can get the values for these URI variables in the storage account information on the Endpoints tab.
130130

0 commit comments

Comments
 (0)