You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Use this tutorial to learn how to automate the rotation of a secret for resources that use single-user/single-password authentication.
4
4
services: key-vault
5
5
author: msmbaldwin
6
6
manager: rkarlin
@@ -13,11 +13,11 @@ ms.date: 01/26/2020
13
13
ms.author: mbaldwin
14
14
15
15
---
16
-
# Automate the rotation of a secret for resources that use single-userpassword authentication
16
+
# Automate the rotation of a secret for resources that use single-user/single-password authentication
17
17
18
18
The best way to authenticate to Azure services is by using a [managed identity](managed-identity.md), but there are some scenarios where that isn't an option. In those cases, access keys or secrets are used. You should periodically rotate access keys or secrets.
19
19
20
-
This tutorial shows how to automate the periodic rotation of secrets for databases and services that use single-userpassword authentication. Specifically, this tutorial rotates SQL Server passwords stored in Azure Key Vault by using a function triggered by Azure Event Grid notification:
20
+
This tutorial shows how to automate the periodic rotation of secrets for databases and services that use single-user/single-password authentication. Specifically, this tutorial rotates SQL Server passwords stored in Azure Key Vault by using a function triggered by Azure Event Grid notification:
21
21
22
22

23
23
@@ -227,7 +227,7 @@ Open the **sqluser** secret and view the original and rotated versions:
227
227
228
228

229
229
230
-
## Create a web app
230
+
###Create a web app
231
231
232
232
To verify the SQL credentials, create a web app. This web app will get the secret from Key Vault, extract SQL database information and credentials from the secret, and test the connection to SQL Server.
233
233
@@ -240,7 +240,7 @@ The web app requires these components:
240
240
1. Select the **simplerotation** resource group.
241
241
1. Select **Purchase**.
242
242
243
-
## Deploy the web app
243
+
###Deploy the web app
244
244
245
245
You can find source code for the web app on [GitHub](https://github.com/jlichwa/azure-keyvault-basicrotation-tutorial/tree/master/test-webapp).
246
246
@@ -254,7 +254,7 @@ To deploy the web app, complete these steps:
0 commit comments