Skip to content

Commit

Permalink
Fix grammar and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sdwheeler committed Dec 5, 2023
1 parent a4e30de commit 35248d4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
description: This article explains how to use an Azure Key Vault module, as a SecretManagement extension vault, in an automation scenario to securely retrieve and use passwords or other secret material.
ms.date: 06/28/2023
title: Using Azure Key Vault in automation
ms.date: 12/05/2023
title: Use Azure Key Vault in automation
---
# Using Azure Key Vault in automation
# Use Azure Key Vault in automation

This article provides an example for using Azure Key Vault in an automation scenario. Azure Key
Vault provides you a way to securely store and retrieve the passwords, tokens and other secrets, that are stored outside of the local machine, and use them
in your automation pipeline.
Vault provides you a way to securely store and retrieve the passwords, tokens and other secrets,
that are stored outside of the local machine, and use them in your automation pipeline.

## Setting up the host that runs the automation
## Set up the host that runs the automation

Beginning with **Az.KeyVault** 3.3.0, the module includes a **SecretManagement** extension that
allows you to use the **SecretManagement** cmdlets to interact with secrets stored in Azure Key
Expand Down Expand Up @@ -38,7 +38,7 @@ $VaultParameters = @{
Register-SecretVault -Module Az.KeyVault -Name AzKV -VaultParameters $VaultParameters
```

## Using Azure Key Vault secrets in automation
## Use Azure Key Vault secrets in automation

Now that you have registered your Azure Key Vault with **SecretManagement** you can view secrets
with `Get-SecretInfo`, get secrets with `Get-Secret`, create and update secrets with `Set-Secret`,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
description: This article explains how to use a SecretStore vault in an automation scenario to securely retrieve an use passwords or other secret material.
ms.date: 06/28/2023
title: Using the SecretStore in automation
ms.date: 12/05/2023
title: Use the SecretStore in automation
---
# Using the SecretStore in automation
# Use the SecretStore in automation

This article provides an example for using a **Microsoft.PowerShell.SecretStore** vault in an
automation scenario. A **SecretStore** vault provides you a way to securely store and retrieve the
passwords, tokens and other secrets you need to use in your automation pipeline on the local machine.

## Setting up the host the runs the automation
## Set up the host that runs the automation

For this example you must first install and configure the SecretManagement modules. This example
assumes that your automation host is running Windows. These commands must be run in the user context
Expand Down Expand Up @@ -63,7 +63,7 @@ Set-SecretStoreConfiguration @storeConfiguration
Now that you have the vault installed and configured, you can use `Set-Secret` to add the secrets
you need for your automation scripts.

## Using secrets in automation
## Use secrets in automation

The **SecretStore** password must be provided in a secure fashion. Here the password is being
imported from a file that was encrypted using Windows Data Protection (DPAPI).
Expand Down
4 changes: 2 additions & 2 deletions reference/docs-conceptual/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ items:
items:
- name: Managing a SecretStore vault
href: SecretManagement/how-to/manage-secretstore.md
- name: Using the SecretStore in automation
- name: Use the SecretStore in automation
href: SecretManagement/how-to/using-secrets-in-automation.md
- name: Using Azure Key Vault in automation
- name: Use Azure Key Vault in automation
href: SecretManagement/how-to/using-azure-keyvault.md

0 comments on commit 35248d4

Please sign in to comment.