Skip to content

Commit 37bf39a

Browse files
Updating storage config examples
1 parent cc3f5a4 commit 37bf39a

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

articles/azure-functions/functions-reference.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,13 +213,17 @@ To use an identity-based connection for "AzureWebJobsStorage", configure the fol
213213

214214
| Setting | Description | Example value |
215215
|-----------------------------------------------------|--------------------------------------------|------------------------------------------------|
216-
| `AzureWebJobsStorage__blobServiceUri`| The data plane URI of the blob service of the storage account. | <storage_account_name>.blob.core.windows.net |
217-
| `AzureWebJobsStorage__queueServiceUri` | The data plane URI of the queue service of the storage account. | <storage_account_name>.queue.core.windows.net |
216+
| `AzureWebJobsStorage__blobServiceUri`| The data plane URI of the blob service of the storage account, using the HTTPS scheme. | https://<storage_account_name>.blob.core.windows.net |
217+
| `AzureWebJobsStorage__queueServiceUri` | The data plane URI of the queue service of the storage account, using the HTTPS scheme. | https://<storage_account_name>.queue.core.windows.net |
218218

219219
[Common properties for identity-based connections](#common-properties-for-identity-based-connections) may also be set as well.
220220

221221
If you are using a storage account that uses the default DNS suffix and service name for global Azure, following the `https://<accountName>.blob/queue/file/table.core.windows.net` format, you can instead set `AzureWebJobsStorage__accountName` to the name of your storage account. The blob and queue endpoints will be inferred for this account. This will not work if the storage account is in a sovereign cloud or has a custom DNS.
222222

223+
| Setting | Description | Example value |
224+
|-----------------------------------------------------|--------------------------------------------|------------------------------------------------|
225+
| `AzureWebJobsStorage__accountName` | The account name of a storage account, valid only if the account is not in a sovereign cloud and does not have a custom DNS. | <storage_account_name> |
226+
223227
[!INCLUDE [functions-azurewebjobsstorage-permissions](../../includes/functions-azurewebjobsstorage-permissions.md)]
224228

225229
## Reporting Issues

includes/functions-storage-blob-connections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this mode, the extension requires the following properties:
3131

3232
| Property | Environment variable template | Description | Example value |
3333
|---------------------------|-----------------------------------------------------|--------------------------------------------|---------|
34-
| Blob Service URI | `<CONNECTION_NAME_PREFIX>__blobServiceUri`<sup>1</sup> | The data plane URI of the blob service to which you are connecting. | <storage_account_name>.blob.core.windows.net |
34+
| Blob Service URI | `<CONNECTION_NAME_PREFIX>__blobServiceUri`<sup>1</sup> | The data plane URI of the blob service to which you are connecting, using the HTTPS scheme. | https://<storage_account_name>.blob.core.windows.net |
3535

3636
<sup>1</sup> `<CONNECTION_NAME_PREFIX>__serviceUri` can be used as an alias. If both aliases provided, the `blobServiceUri` form will be used. The `serviceUri` form cannot be used when the overall connection configuration is to be used across blobs, queues, and/or tables.
3737

includes/functions-storage-queue-connections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this mode, the extension requires the following properties:
3131

3232
| Property | Environment variable template |Description | Example value |
3333
|---------------------------|-----------------------------------------------------|--------------------------------------------|---------|
34-
| Queue Service URI | `<CONNECTION_NAME_PREFIX>__queueServiceUri`<sup>1</sup> | The data plane URI of the queue service to which you are connecting. | <storage_account_name>.queue.core.windows.net |
34+
| Queue Service URI | `<CONNECTION_NAME_PREFIX>__queueServiceUri`<sup>1</sup> | The data plane URI of the queue service to which you are connecting, using the HTTPS scheme. | https://<storage_account_name>.queue.core.windows.net |
3535

3636
<sup>1</sup> `<CONNECTION_NAME_PREFIX>__serviceUri` can be used as an alias. If both forms are provided, the `queueServiceUri` form will be used. The `serviceUri` form cannot be used when the overall connection configuration is to be used across blobs, queues, and/or tables.
3737

0 commit comments

Comments
 (0)