Jenkins : Hashicorp Vault Pipeline Plugin

Plugin Information

No information for the plugin 'hashicorp-vault-pipeline-plugin' is available. It may have been removed from distribution.


Description

Enables pulling of vault values within a pipeline step

Example
pipeline {
    agent any
    environment {
        SECRET = vault path: 'secrets', key: 'username'
    }
    stages {
        stage("read vault key") {
            steps {
                echo "${SECRET}"
            }
        }
    }
}