Version information
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x
- Puppet >= 7.0.0 < 9.0.0
- , , , , , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'puppet-vault_lookup', '1.1.0'
Learn more about managing modules with a PuppetfileDocumentation
vault_lookup
Module to integrate Puppet 6 (and newer) and Puppet Enterprise 2019 (and newer) agents with Hashicorp Vault.
Table of Contents
Description
For Puppet 6+ or Puppet Enterprise 2019+ users wanting to use secrets from
Hashicorp Vault on their Puppet agents, this
Puppet module provides the vault_lookup::lookup()
function.
When used with Puppet 6's Deferred
type, the function
allows agents to retrieve secrets from Vault when a catalog is applied rather
than compiled. In this way, the secret data is not embedded in the catalog and
the Puppetserver does not need permissions to read all your Vault secrets.
Requirements
This modules assumes the following:
- Puppet 6+
- An existing Vault infrastructure
The vault_lookup::lookup()
function is expected to be run with the Deferred
type; as such, Puppet 6 or later is required.
And as this function is meant to read secrets from Vault, an existing Vault infrastructure is assumed to be up and reachable by your Puppet agents.
Usage
Install this module as you would in any other; the necessary code will be distributed to Puppet agents via pluginsync.
In your manifests, call the vault_lookup::lookup()
function using the
Deferred type. For example:
$d = Deferred('vault_lookup::lookup', ["secret/test", 'https://vault.hostname:8200'])
node default {
notify { example :
message => $d
}
}
The lookup function will be run on the agent and the value of $d
will be
resolved when the catalog is applied. This will make a call to
https://vault.hostname:8200/v1/secret/test
and wrap the result in Puppet's
Sensitive
type, which prevents the value from being logged.
You can also choose not to specify the Vault URL, and then Puppet will use the
VAULT_ADDR
environment variable. This will be either set on the command line, or
set in the service config file for Puppet, on Debian /etc/default/puppet
, on RedHat
/etc/sysconfig/puppet
:
$d = Deferred('vault_lookup::lookup', ["secret/test"])
node default {
notify { example :
message => $d
}
}
Configuring the Vault lookup
The lookup done by vault_lookup::lookup()
can be configured in three ways:
positional arguments, a hash of options, and/or environment variables.
In all cases, the path to the secret is the first positional argument and is
required. All other arguments are optional. Arguments in [square brackets]
below are optional.
Positional Arguments
vault_lookup::lookup( <path>, [<vault_addr>], [<cert_path_segment>], [<cert_role>], [<namespace>], [<field>], [<auth_method>], [<role_id>], [<secret_id>], [<approle_path_segment>], [<agent_sink_file>] )
Options Hash
vault_lookup::lookup( <path>, [<options_hash>] )
Environment Variables
Not all options can be set with environment variables. Use the table below to find the matching env var, if available. Also note that environment variables are only used if the option is not supplied to the function.
Option Name | Environment Variable |
---|---|
vault_addr |
VAULT_ADDR |
cert_path_segment |
---- |
cert_role |
---- |
namespace |
VAULT_NAMESPACE |
field |
---- |
auth_method |
VAULT_AUTH_METHOD |
role_id |
VAULT_ROLE_ID |
secret_id |
VAULT_SECRET_ID |
approle_path_segment |
---- |
agent_sink_file |
VAULT_AGENT_SINK_FILE |
Usage Examples
Here are some examples of each method:
# Positional arguments
## Using the default 'cert' auth method.
$data_1a = vault_lookup::lookup('secret/db/password', 'https://vault.corp.net:8200')
## Using the 'approle' auth method.
$data_2a = vault_lookup::lookup('secret/db/blah', 'https://vault.corp.net:8200', undef, undef, undef, undef, 'approle', 'team_a', 'abcd1234!@#')
## Pulling out a specific field.
$password = vault_lookup::lookup('secret/test', 'http://vault.corp.net:8200', undef, undef, undef, 'password')
# Options hash
## Using the default 'cert' auth method.
$data_1b = vault_lookup::lookup('secret/db/password', { 'vault_addr' => 'https://vault.corp.net:8200' })
## Using the 'approle' auth method.
$data_2b = vault_lookup::lookup('secret/db/blah', {
'vault_addr' => 'https://vault.corp.net:8200',
'auth_method' => 'approle',
'role_id' => 'team_a',
'secret_id' => 'abcd1234!@#',
})
# Using 'field' to pull out a specific field from the data.
$password = vault_lookup::lookup('secret/test', {'vault_addr' => 'http://127.0.0.1:8200', 'field' => 'password'})
# Using Deferred is simpler with the options hash.
$password_deferred = Deferred('vault_lookup::lookup', ["secret/test", {
vault_addr => 'http://127.0.0.1:8200',
field => 'password',
}])
A note about caching
The vault_lookup::lookup()
function caches the result of a lookup and will
use that cached result for the life of the catalog application (when using
Deferred
) or catalog compilation (when not using Deferred
).
Looked up values are cached based on a combination of their:
- Path in the Vault URI
- Vault Address
- Namespace
- Field
This means that you can call vault_lookup::lookup()
multiple times for the
same piece of data or refer to the same Deferred
value multiple times and
there will only be a single fetch from Vault. This helps to reduce the amount
of back-and-forth network traffic to your Vault cluster.
For example, in the code below, due to caching, the secret/db/password
value
is only looked up once even though the function is called twice:
# Wrap the function in Deferred, and save it to a variable.
#
# Since the path, vault_addr, and namespace don't change, only one Vault lookup
# will be made regardless of how many times the $db_password variable is used.
#
$db_password = Deferred('vault_lookup::lookup', [
'secret/db/password',
{'vault_addr' => 'https://vault.corp.net:8200'},
])
# Call the deferred function once.
file { '/etc/db.conf':
ensure => file,
content => $db_password,
}
# Call the deferred function twice.
notify { 'show the DB password':
message => $db_password,
}
But if the path, the Vault address, or the namespace change, a new lookup to
Vault will happen. For example, in the code below, even though the path is the
same in both of these lookups (secret/db/password
), the namespace is
different, so a separate lookup will be made rather than the cached value from
the first lookup of secret/db/password
being used.
# Fetch a value from Vault without using a namespace.
$db_password = Deferred('vault_lookup::lookup', [
'secret/db/password',
{'vault_addr' => 'https://vault.corp.net:8200'},
])
# Fetch a value from Vault in the 'dev' namespace.
$db_password_namespaced = Deferred('vault_lookup::lookup', [
'secret/db/password',
{'vault_addr' => 'https://vault.corp.net:8200', 'namespace' => 'dev'},
])
file { '/etc/db.conf':
ensure => file,
content => $db_password,
}
notify { 'show the dev namespace DB password':
message => $db_password_namespaced,
}
A note about spec testing Puppet code that uses this function
When spec testing Puppet code that uses the vault_lookup::lookup()
function,
you'll probably want to stub the function so that it doesn't hit your real
Vault servers. Below is an example of how to do that. This is particularly
useful when spec testing a class or define that defers the function call.
Two things that will need to be configured are 1) a require_relative
of the
internal puppet_x module. Note that this assumes you're pulling the module down
into a spec/fixtures/
directory.
require_relative '../fixtures/modules/vault_lookup/lib/puppet_x/vault_lookup/lookup'
and 2) a stub on the PuppetX::VaultLookup::Lookup
class's :lookup
method:
before(:each) do
allow(PuppetX::VaultLookup::Lookup).to receive(:lookup)
.and_return(Puppet::Pops::Types::PSensitiveType::Sensitive.new('hello world'))
end
Here's a complete example:
require 'spec_helper'
require_relative '../fixtures/modules/vault_lookup/lib/puppet_x/vault_lookup/lookup'
describe 'some::class' do
on_supported_os.each do |os, os_facts|
context "on #{os}" do
let(:facts) { os_facts }
before(:each) do
allow(PuppetX::VaultLookup::Lookup).to receive(:lookup)
.and_return(sensitive('hello world'))
end
context 'with all defaults' do
it { is_expected.to compile }
it { is_expected.to contain_file('/etc/credentials.txt').with_content(sensitive('hello world')) }
end
end
end
end
Authentication Methods
The vault_lookup::lookup()
function can authenticate to Vault in a number of ways. This table shows the currently supported auth_method
types:
auth_method |
Description |
---|---|
cert |
(this is the default) Uses the Puppet agent's certificate via the TLS Certificates auth method. |
approle |
Uses the AppRole auth method. |
agent |
Uses a local Vault Agent's auto-auth token and caching proxy. |
agent_sink |
Uses a local Vault Agent's auto-auth file sink. |
Puppetserver CA and agent certificates
The vault_lookup::lookup()
function by default will use the Puppet agent's
certificates to authenticate to the Vault server. This means that before any
agents contact a Vault server, you must configure the Vault server with the
Puppet Server's CA certificate, and Vault must be part of the same certificate
infrastructure.
-
Set up Vault using Puppet certs (if not already set up this way). If the Vault host has a Puppet agent on it then you can just its existing host certificates. Otherwise generate a new certificate with
puppetserver ca
and copy the files.$ puppetserver ca generate --certname my-vault.my-domain.me
In the Vault listener configuration, set
tls_client_ca_file
as the Puppet CA cert,tls_cert_file
as the agent's or generated certificate, andtls_key_file
as the agent's or generated private key. -
Enable the
cert
auth backend in Vault.$ vault auth enable cert
-
Upload the Puppet Server CA certificate to Vault. After
cert
auth has been enabled for Vault, upload the CA certificate from your Puppet Server to Vault, and add it as a trusted certificate.$ vault write auth/cert/certs/puppetserver \ display_name=puppet \ policies=prod,test \ certificate=@/path/to/puppetserver/ca.pem \ ttl=3600
Once the certificate has been uploaded, any Puppet agent with a signed certificate will be able to authenticate with Vault.
AppRole
vault:vault_lookup()
can also use AppRole authentication to authenticate
against Vault with a valid role_id
and secret_id
. See The Approle Vault
Documentation for detailed
explanations of creating and obtaining the security credentials. You will need
the Role ID (non sensitive) and the Secret ID (sensitive!). The Secret ID can
be provided as an argument to the vault:vault_lookup()
function but it is
recommended to pass this as an environment variable and not bake this into
code.
Example:
$ vault read auth/approle/role/puppet/role-id
Key Value
--- -----
role_id XXXXX-XXXX-XXX-XX-XXXXXXXXXX
# vault write -f auth/approle/role/puppet/secret-id
Key Value
--- -----
secret_id YYYYY-YYYY-YYY-YY-YYYYYYYYYYY
secret_id_accessor ZZZZZ-ZZZZZZ-ZZZZZZ-ZZZZZZZZ-ZZZZ
secret_id_ttl 0s
In order to use the AppRole auth method, either set the VAULT_AUTH_METHOD
environment variable on the Puppet process to approle
or set the
auth_method
option to approle
when calling the function:
export VAULT_AUTH_METHOD=approle
export VAULT_ROLE_ID=XXXXX-XXXX-XXX-XX-XXXXXXXXXX
export VAULT_SECRET_ID=YYYYY-YYYY-YYY-YY-YYYYYYYYYYY
Vault Agent: auto-auth token
This method of authentication relies on a local Vault Agent running on the
Puppet agent host. The Vault Agent handles authenticating to your Vault server,
and the vault_lookup::lookup()
function just needs to make requests through
the local Vault Agent's caching proxy. The Vault Agent in this scenario must be
using Auto Auth, have Caching enabled, and have use_auto_auth_token
set to
true
.
https://developer.hashicorp.com/vault/docs/agent/caching#using-auto-auth-token
An example Vault Agent config for this scenario is shown below:
vault {
address = "https://vault.corp.net:8200"
}
listener "tcp" {
address = "127.0.0.1:8100"
tls_disable = true
}
auto_auth {
# Some type of auto_auth configuration from:
# https://developer.hashicorp.com/vault/docs/agent/autoauth
}
cache {
use_auto_auth_token = true
}
And here's how the vault_lookup::lookup()
function can be used to talk to the
local Vault agent and use its token for authentication:
# Talk to the local Vault Agent that has "use_auto_auth_token = true"
$data = Deferred('vault_lookup::lookup', ["secret/test", {
vault_addr => 'http://127.0.0.1:8200',
auth_method => 'agent',
field => 'password',
}])
file { '/tmp/secret_data.txt':
ensure => file,
owner => 'app',
group => 'app',
mode => '0440',
content => $data,
}
A benefit of this method is that is uses the Vault Agent's cached token rather than generating a new token for each call of the function. This reduces the load on your Vault servers as token generation can be an expensive operation.
Vault Agent: auto-auth file sink
This method of authentication relies on a local Vault Agent running on the
Puppet agent host. The Vault Agent handles authenticating to your Vault server,
and the vault_lookup::lookup()
function reads the cached token from a sink
file managed by the Vault Agent. Optionally, the lookup could also talk through
your Vault Agent's caching proxy if enabled.
The Vault Agent in this scenario must be using Auto Auth and an unencrypted, non-response-wrapped File Sink for the token.
https://developer.hashicorp.com/vault/docs/agent/autoauth/sinks/file
An example Vault Agent config for this scenario is shown below:
vault {
address = "https://vault.corp.net:8200"
}
# The listener is optional here, but could be used for the 'vault_addr' in
# the vault_lookup::lookup() Puppet function.
listener "tcp" {
address = "127.0.0.1:8100"
tls_disable = true
}
auto_auth {
# Some type of auto_auth method from:
# https://developer.hashicorp.com/vault/docs/agent/autoauth/methods
method { }
sink {
type = "file"
config = {
path = "/path/to/vault-token
}
}
}
And here's how the vault_lookup::lookup()
function can be configured to use
the token from the auto-auth file sink for authentication:
# Use the token from the local Vault Agent's auto-auth file sink.
$data = Deferred('vault_lookup::lookup', ["secret/test", {
# This doesn't have to be the local Vault agent's proxy, but using it can
# provide additional caching.
vault_addr => 'http://127.0.0.1:8200',
auth_method => 'agent_sink',
agent_sink_file => '/path/to/vault-token',
field => 'password',
}])
file { '/tmp/secret_data.txt':
ensure => file,
owner => 'app',
group => 'app',
mode => '0440',
content => $data,
}
A benefit of this method is that is uses the Vault Agent's cached token rather than generating a new token for each call of the function. This reduces the load on your Vault servers as token generation can be an expensive operation.
Changelog
All notable changes to this project will be documented in this file. Each new release typically also includes the latest modulesync defaults. These should not affect the functionality of the module.
v1.1.0 (2023-11-28)
Implemented enhancements:
v1.0.0 (2023-05-01)
Breaking changes:
- Drop Puppet 6 support #81 (bastelfreak)
Implemented enhancements:
Closed issues:
- Agent unable to connect to Vault because of cert issue #62
- Detection of what kv version the vault is should be done via a different heuristic. #56
Merged pull requests:
- Move bulk of logic to PuppetX::VaultLookup::Lookup #77 (natemccurdy)
v0.7.0 (2023-04-19)
Implemented enhancements:
- Add new auth methods: agent, agent_sink #66 (natemccurdy)
- Cache the result of a lookup #65 (natemccurdy)
- Allow for setting lookup options with a hash instead of positional arguments #64 (natemccurdy)
Closed issues:
- Retreiving a field value fails. #69
- undefined local variable or method 'vault_role_id' #68
- [Feature Request] Ability not to do cert auth login as part of lookup #24
- Add local vault mode #7
Merged pull requests:
- README updates: more examples, explain auth methods #73 (natemccurdy)
- Correction vault_role_id and vault_secret_id missing #67 (phaedriel)
v0.6.0 (2022-11-01)
Implemented enhancements:
v0.5.0 (2022-08-23)
Implemented enhancements:
- Kv2 support with a specified secret key #54 (firstnevyn)
- Feat: support retrieving secrets from non-puppet signed Vault listener #53 (firstnevyn)
v0.4.0 (2022-06-30)
Implemented enhancements:
- Add support for Vault Namespaces #29 (Augustin-FL)
v0.3.0 (2022-06-30)
Implemented enhancements:
- Update function for work with Vault secured with Letsencrypt certificates #44
- (MODULES-11321) Use new Puppet http runtime; require Puppet 6.16 or newer #50 (tvpartytonight)
Closed issues:
- Error: Failed to apply catalog: undefined method `http_ssl_instance' for Puppet::Network::HttpPool:Module #39
- Getting the following puppet deprecation when reusing your code #22
v0.2.0 (2021-09-19)
Implemented enhancements:
Fixed bugs:
Closed issues:
- Allow Vault configuration from VAULT_ADDR environment variable #8
Merged pull requests:
- delete unneeded fixtures file #37 (bastelfreak)
- Adds warnings to error logging #23 (petems)
- Fix acceptance failures #17 (tvpartytonight)
- Run acceptance tests in travis #11 (tvpartytonight)
- (PUP-9212) Add acceptance tests #6 (tvpartytonight)
v0.1.1 (2018-10-16)
Merged pull requests:
v0.1.0 (2018-10-10)
Merged pull requests:
* This Changelog was automatically generated by github_changelog_generator
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS