Skip to content

Commit c2dfaa9

Browse files
committed
tutorial-rotation
1 parent 164a2f1 commit c2dfaa9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/key-vault/tutorial-rotation.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Single-user password rotation tutorial
3-
description: Use this tutorial to learn how to automate the rotation of a secret for resources that use single-user password authentication.
2+
title: Single-user/single-password rotation tutorial
3+
description: Use this tutorial to learn how to automate the rotation of a secret for resources that use single-user/single-password authentication.
44
services: key-vault
55
author: msmbaldwin
66
manager: rkarlin
@@ -13,11 +13,11 @@ ms.date: 01/26/2020
1313
ms.author: mbaldwin
1414

1515
---
16-
# Automate the rotation of a secret for resources that use single-user password authentication
16+
# Automate the rotation of a secret for resources that use single-user/single-password authentication
1717

1818
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.
1919

20-
This tutorial shows how to automate the periodic rotation of secrets for databases and services that use single-user password 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:
2121

2222
![Diagram of rotation solution](./media/rotate1.png)
2323

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

228228
![Open the sqluser secret](./media/rotate9.png)
229229

230-
## Create a web app
230+
### Create a web app
231231

232232
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.
233233

@@ -240,7 +240,7 @@ The web app requires these components:
240240
1. Select the **simplerotation** resource group.
241241
1. Select **Purchase**.
242242

243-
## Deploy the web app
243+
### Deploy the web app
244244

245245
You can find source code for the web app on [GitHub](https://github.com/jlichwa/azure-keyvault-basicrotation-tutorial/tree/master/test-webapp).
246246

@@ -254,7 +254,7 @@ To deploy the web app, complete these steps:
254254
az webapp deployment source config-zip -g simplerotation -n simplerotation-app --src /home/{firstname e.g jack}/simplerotationsample-app.zip
255255
```
256256

257-
## Open the web app
257+
### Open the web app
258258

259259
Go to the deployed application and select the URL:
260260

0 commit comments

Comments
 (0)