Skip to content

Commit 8db426f

Browse files
authored
Merge pull request #83414 from intikhabalam/patch-1
Updated 'AccountName' to 'StorageAccountName' to avoid confusion.
2 parents 44cd7d1 + e1163da commit 8db426f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/functions-identity-based-connections-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 10/20/2021
1010

1111
# Tutorial: Create a function app that connects to Azure services using identities instead of secrets
1212

13-
This tutorial shows you how to configure a function app using Azure Active Directory identities instead of secrets or connection strings, where possible. Using identities helps you avoid accidentally leaking sensitive secrets and can provide better visibility into how data is accessed. To learn more about identity-based connections, see [configure an identity-based connection.](functions-reference.md#configure-an-identity-based-connection).
13+
This tutorial shows you how to configure a function app using Azure Active Directory identities instead of secrets or connection strings, where possible. Using identities helps you avoid accidentally leaking sensitive secrets and can provide better visibility into how data is accessed. To learn more about identity-based connections, see [configure an identity-based connection](functions-reference.md#configure-an-identity-based-connection).
1414

1515
While the procedures shown work generally for all languages, this tutorial currently supports C# class library functions on Windows specifically.
1616

@@ -106,7 +106,7 @@ In order to use Azure Key Vault, your app will need to have an identity that can
106106

107107
1. Select **Save**. It might take a minute or two for the role to show up when you refresh the role assignments list for the identity.
108108

109-
The identity will now be able to read secrets stored in the vault. Later in the tutorial, you will add additional role assignments for different purposes.
109+
The identity will now be able to read secrets stored in the key vault. Later in the tutorial, you will add additional role assignments for different purposes.
110110

111111
### Generate a template for creating a function app
112112

@@ -304,7 +304,7 @@ Next you will update your function app to use its system-assigned identity when
304304
| Option | Suggested value | Description |
305305
| ------------ | ---------------- | ----------- |
306306
| **Name** | AzureWebJobsStorage__accountName | Update the name from **AzureWebJobsStorage** to the exact name `AzureWebJobsStorage__accountName`. This setting tells the host to use the identity instead of looking for a stored secret. The new setting uses a double underscore (`__`), which is a special character in application settings. |
307-
| **Value** | Your account name | Update the name from the connection string to just your **AccountName**. |
307+
| **Value** | Your account name | Update the name from the connection string to just your **StorageAccountName**. |
308308

309309
This configuration will let the system know that it should use an identity to connect to the resource.
310310

0 commit comments

Comments
 (0)