Skip to content

Commit 8eac6cb

Browse files
committed
A few more tweaks
1 parent c026152 commit 8eac6cb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/azure-functions/configure-networking-how-to.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: How to configure Azure Functions with a virtual network
33
description: Article that shows you how to perform certain virtual networking tasks for Azure Functions.
44
ms.topic: how-to
5-
ms.date: 12/19/2023
5+
ms.date: 01/31/2024
66
ms.custom: template-how-to
77
---
88

@@ -19,21 +19,21 @@ When you create a function app, you either create a new storage account or link
1919
2020
For a list of all restrictions on storage accounts, see [Storage account requirements](storage-considerations.md#storage-account-requirements).
2121

22-
### During function app creation
22+
## Secure storage during function app creation
2323

2424
You can create a function app along with a new storage account secured behind a virtual network that is accessible via private endpoints. The following links show you how to create these resources by using either the Azure portal or by using deployment templates:
2525

26-
# [Azure portal](#tab/portal)
26+
### [Azure portal](#tab/portal)
2727

2828
Complete the following tutorial to create a new function app a secured storage account: [Use private endpoints to integrate Azure Functions with a virtual network](functions-create-vnet.md).
2929

30-
# [Deployment templates](#tab/templates)
30+
### [Deployment templates](#tab/templates)
3131

3232
Use Bicep files or Azure Resource Manager (ARM) templates to create a secured function app and storage account resources. When you create a secured storage account in an automated deployment, you must also specifically set the `WEBSITE_CONTENTSHARE` setting and create the file share as part of your deployment. For more information, including links to example deployments, see [Secured deployments](functions-infrastructure-as-code.md#secured-deployments).
3333

3434
---
3535

36-
### Existing function app
36+
## Secure storage for an existing function app
3737

3838
When you have an existing function app, you can't directly secure the storage account currently being used by the app. You must instead swap-out the existing storage account for a new, secured storage account.
3939

@@ -87,8 +87,8 @@ Finally, you need to update your application settings to point at the new secure
8787

8888
| Setting name | Value | Comment |
8989
|----|----|----|
90-
| `AzureWebJobsStorage`<br>`WEBSITE_CONTENTAZUREFILECONNECTIONSTRING` | Storage connection string | This is the connection string for the new secured storage account, which you saved earlier. |
91-
| `WEBSITE_CONTENTSHARE` | File share | The name of the file share created in the secured storage account where the project deployment files reside. |
90+
| [`AzureWebJobsStorage`](./functions-app-settings.md#azurewebjobsstorage)<br>[`WEBSITE_CONTENTAZUREFILECONNECTIONSTRING`](./functions-app-settings.md#website_contentazurefileconnectionstring) | Storage connection string | Both settings contain the connection string for the new secured storage account, which you saved earlier. |
91+
| [`WEBSITE_CONTENTSHARE`](./functions-app-settings.md#website_contentshare) | File share | The name of the file share created in the secured storage account where the project deployment files reside. |
9292

9393
1. Select **Save** to save the application settings. Changing app settings causes the app to restart.
9494

0 commit comments

Comments
 (0)