All pages
Powered by GitBook
1 of 1

PowerShell Plugin

Utilize PowerShell's Secret Management module to access secrets with the Keeper Secrets Manager PowerShell Plugin

Features

  • Retrieve secrets from the Keeper Vault to use in PowerShell

  • Integrate Keeper vault with PowerShell Secrets Manager

  • Update secret values in the Keeper Vault from PowerShell

  • Get files from the Keeper vault

For a complete list of Keeper Secrets Manager features see the Overview

Prerequisites

This page documents the Secrets Manager PowerShell integration. In order to utilize this integration, you will need:

Secrets Manager requires PowerShell version 6 or greater. Microsoft distributes PowerShell version 6+ as a separate application from versions 5 and earlier.

See Microsoft's Documentation for installation details

  • PowerShell Version 6.0 or later

    • See Microsoft's Documentation for installation details

  • Keeper Secrets Manager access (See the Quick Start Guide for more details)

    • Secrets Manager addon enabled for your Keeper account

    • Membership in a Role with the Secrets Manager enforcement policy enabled

  • A Keeper Secrets Manager Application with secrets shared to it

    • See the Quick Start Guide for instructions on creating an Application

  • A One Time Access Token

About

The Keeper Secrets Manager PowerShell plugin utilizes Microsoft PowerShell's Secret Management module to inject secrets from the Keeper Vault into your PowerShell scripts.

The Keeper Secrets Manager extension can be easily configured added as a secret vault into new or existing PowerShell Secret Management workflows.

For more information about PowerShell Secret Management, see the PowerShell docs on their GitHub page.

Installation

1. Install PowerShell Secret Management Module

Keeper Secrets Manager uses the Microsoft.PowerShell.SecretManagement module to manage secrets in PowerShell.

Install using PowerShell:

Install-Module -Name Microsoft.PowerShell.SecretManagement

See PowerShell Gallery for other installation options

2. Install Keeper Secrets Manager for PowerShell

Install the Keeper Secrets Manager PowerShell extension from the PowerShell Gallery.

Install-Module -Name SecretManagement.Keeper

See the PowerShell Gallery page for more installation options, or find the source code in GitHub.

To update SecretManagement, use the command: Update-Module -Name SecretManagement.Keeper

3. Install a PowerShell Secret Management Extension

If you already have a local secrets extension that you would like to use, you can skip this step

The Keeper Secrets Manager PowerShell plugin will need a secret management extension to store the plugin configuration locally to your machine.

Keeper recommends Microsoft.Powershell.SecretStore or SecretManagement.KeyChain

Install-Module -Name Microsoft.Powershell.SecretStore
Install-Module -Name SecretManagement.KeyChain

4. Register a Vault to use for Configuration Storage

If you already have a local secrets vault registered that you would like to use, you can skip this step

Register a secret vault for the previously installed secret management extension, so that the Keeper Secrets Manager plugin configuration can be stored.

Register-SecretVault -Name LocalStore -ModuleName Microsoft.Powershell.SecretStore
Register-SecretVault -Name LocalStore -ModuleName SecretManagement.KeyChain

The name of this vault will be used to register the Keeper extension. We used LocalStore in this example.

The Secret Management extension that you use for local storage may ask you to create a password for securely accessing the local vault.

Depending on your system settings, you may need to allow PowerShell to trust external modules. To do this, run the command:

set-executionpolicy remotesigned

5. Register the Keeper Vault

Register the Keeper Secrets Manager Vault using the local vault registered above to save your credentials, and a one time token to connect to Keeper.

Replace 'XXX' below with a one time token.

Register-KeeperVault -Name Keeper -LocalVaultName LocalStore -OneTimeToken XXX 

Alternatively you can use already generated config - replace 'XXX' below with a base64 encoded config.

Register-KeeperVault -Name Keeper -LocalVaultName LocalStore -Config XXX 

6. Set Keeper Vault as Default Secret Storage (Optional)

Set the Keeper vault you just added as the default secret storage. This will tell the PowerShell SecretsManagement module to use your Keeper vault when getting and setting secrets.

Set-SecretVaultDefault Keeper

This step is optional, but if you choose not to do it, you may receive secrets from your default vault if they have the same name, and you will need to add -Vault <keeper vault name> (e.g. -Vault keeper ) to Get-Secret, Set-Secret commands

The Keeper Secrets Manager PowerShell Plugin is now ready to be used

Source Code

Find the Keeper Secrets Manager PowerShell Plugin source code in the GitHub repository.

Usage

Find descriptions and examples of the most common usage of the Keeper Secrets Manager PowerShell plugin below.

For more information about PowerShell Secret Management commands, see the PowerShell docs on their GitHub page.

Starting with version 16.6.6 Get/Set commands allow use of \ as and escape character for dots in title. Use escape character only if there's dot in title, and escape both . and \ (ex. \., \\)

Listing Secrets

Run the following PowerShell command to see a list of secrets from Keeper

Get-SecretInfo -Vault <KEEPER VAULT NAME>
PS> Get-SecretInfo -Vault Keeper

Name                                  Type      VaultName
----                                  ----      ---------
bf3dg-99-Juh3feswgtFxg Home SSH       Hashtable Keeper
_3zT0HvBtRdYzKTMw1IySA ACME Login     Hashtable Keeper

Use the name set for your Keeper secrets vault, in the examples above we use Keeper.

The secrets shown are any records shared with the Secrets Manager Application. The Name column displays each record's UID and title.

Getting a Single Secret

Get information and values of a single secret

Get-Secret -Vault <KEEPER VAULT NAME> <RECORD NAME or UID> -AsPlainText
PS> Get-Secret -Vault Keeper "ACME Login" -AsPlainText

Name                           Value
----                           -----
login                          user2
password                       123
Files                          {file1.json, file2.zip}

Wrap the record name in quotation marks when there is a space in it.

-AsPlainText Shows the actual values of the secrets. Otherwise PowerShell shows them as a SecureString

Get a Value From a Secret

Utilize Keeper Dot Notation to identify a field to access. Note that you do not need the 'keeper://' prefix.

Get-Secret -Vault <KEEPER VAULT NAME> <RECORD NAME OR UID>.<FIELD> -AsPlainText
PS> Get-Secret -Vault Keeper "ACME Login.password" -AsPlainText
gmzN6E8@9E97%xPB6Pg0

Set a Value to a Secret

Update the value of a single secret field

Set-Secret -Vault <KEEPER VAULT NAME> <RECORD NAME OR UID>.<FIELD> <VALUE TO SET>

Keeper Vault is set as Default Vault

PS> Set-Secret -Vault Keeper "ACME Login.url" "acme.com"

Keeper Vault is not Default Vault

PS> Set-Secret -Vault Keeper "ACME Login.url" "acme.com" -Vault keeper

Download a File

Use dot notation to specify a file attached to a secret in the Keeper vault. Then pass that file to the Set-Content command to download it.

Get-Secret -Vault <KEEPER VAULT NAME> <RECORD NAME OR UID>.files[<FILENAME>] `
| Set-Content -Path <FILE PATH> -AsByteStream
PS> Get-Secret -Vault Keeper my_record.files[file1.json] `
| Set-Content -Path ./file1.json -AsByteStream

The specified file will be downloaded to the path location given to Set-Content