diff --git a/reference/docs-conceptual/SecretManagement/how-to/using-azure-keyvault.md b/reference/docs-conceptual/SecretManagement/how-to/using-azure-keyvault.md index 5f30c1f..69ffedf 100644 --- a/reference/docs-conceptual/SecretManagement/how-to/using-azure-keyvault.md +++ b/reference/docs-conceptual/SecretManagement/how-to/using-azure-keyvault.md @@ -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 @@ -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`, diff --git a/reference/docs-conceptual/SecretManagement/how-to/using-secrets-in-automation.md b/reference/docs-conceptual/SecretManagement/how-to/using-secrets-in-automation.md index b07614e..f3ad2b5 100644 --- a/reference/docs-conceptual/SecretManagement/how-to/using-secrets-in-automation.md +++ b/reference/docs-conceptual/SecretManagement/how-to/using-secrets-in-automation.md @@ -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 @@ -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). diff --git a/reference/docs-conceptual/toc.yml b/reference/docs-conceptual/toc.yml index 93e65e3..ada23d9 100644 --- a/reference/docs-conceptual/toc.yml +++ b/reference/docs-conceptual/toc.yml @@ -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