A concourse-ci resource for interacting with secrets via Vault. This plugin's code at HEAD
is currently tested against Vault version 1.15.6. The most recent release was tested against 1.15.6.
This resource's container image is currently hosted at matthewschuchard/concourse-vault-resource for usage within Concourse.
This repository and project is based on the work performed for MITODL, and now serves as an upstream for the project hosted within that organization. Accordingly it maintains the BSD-3 license with copyright notice.
parameters
-
auth_engine
: optional The authentication engine for use with Vault. Allowed values areaws
ortoken
. If unspecified will default toaws
with notoken
parameter specified, ortoken
iftoken
parameter is specified. -
address
: optional The address for the Vault server in format ofURL:PORT
. default:http://127.0.0.1:8200
-
aws_mount_path
: optional The mount path for the AWS authentication engine. Parameter is ignored if authentication engine is notaws
. default:aws
-
aws_vault_role
: optional The Vault role for the AWS authentication login to Vault. Parameter is ignored if authentication engine is notaws
. default: (Vault role in utilized AWS authentication engine with the same name as the current utilized AWS IAM Role) -
token
: optional The token for the token authentication engine. Required ifauth_engine
parameter istoken
. default: empty string -
insecure
: optional Whether to utilize an insecure connection with Vault (e.g. no HTTP or HTTPS with self-signed cert). default:false
-
secret
: required/optional Required forcheck
step if automatically renewing a dynamic secret/credential (this occurs when a non-KV secret is input for this value), and/or specifying an exact version of a KV2 secret (otherwise latest; see belowversion
subsection). Automatic renewal of dynamic secrets is a beta feature. KV1 secrets are ignored due to lack of versioning support in Vault. Mutually exclusive withparams
forin
step, but one of the two must be specified ("exclusive or" conditional). Note this value is ignored duringout
as it is not possible for it to have any effect with that step's functionality. The following YAML schema is required for the secret specification. default:nil
secret:
engine: <secret engine> # supported values: database, aws, azure, consul, kubernetes, nomad, rabbitmq, ssh, terraform, kv1, kv2
mount: <secret mount path>
path: <secret path>
# this is ignored for non-dynamic secrets
lease_id: <dynamic secret lease id>
NOTES:
- The KV1 secret engine does not support versioning.
- The KV2 secret engine currently returns the latest version of a secret if version is input as
"0"
, but this behavior may be subject to changes in the API, and no version should be specified if the latest is desired. - The
version
input is ignored forin
withparams
as it is associated with a single secret path, and therefore only functions when peered withsource
forcheck
orin
.
parameters
version
: optional The following YAML schema is required for the version specification. default:nil
version:
version: <version>
Note that the response version
schema for the in
and out
steps is different because multiple secrets can be specified, and for those steps' responses version
is descriptive rather than functional. Therefore the version information displayed in Concourse for those steps appears like:
version:
<mount>-<path>: <version>
check
: returns secret versions between input version and retrieved version sequentially and inclusive
NOTE: currently the KV1 secrets engine is unsupported due to lack of versioning
NOTE: if the specified secret is dynamic, then the input version is ignored because the comparison is between the current time and the secret expiration time
This step has no parameters, and utilizes the source
and version
values for functionality. It also executes automatically during resource instantiation.
Example output for a KV2 secret with Concourse input version 1
and retrieved Vault version 3
:
[{"version":"1"},{"version":"2"},{"version":"3"}]
parameters
<secret_mount path>
: required/optional Mutually exclusive withsource.secret
, but one of the two must be specified. One or more map/hash/dictionary of the following YAML schema for specifying the secrets to retrieve or generate. If a version of a KV2 secret other than the latest is desired, then thesource.secret
must be used instead.
<secret_mount_path>:
paths:
- <path/to/secret>
- <path/to/other_secret>
engine: <secret engine> # supported values: database, aws, azure, consul, kubernetes, nomad, rabbitmq, ssh, terraform, kv1, kv2
usage
The retrieved secrets and their associated values are written/appended as JSON formatted strings to a file located at /opt/resource/vault.json
for subsequent loading and parsing in the pipeline with the following schema:
---
<MOUNT>-<PATH>: <SECRET VALUES>
{ "<MOUNT>-<PATH>": <SECRET VALUES> }
Examples:
---
secret-foo/bar:
password: supersecret
{
"secret-foo/bar": {
"password": "supersecret"
}
}
<secret_mount path>
: required One or more map/hash/dictionary of the following YAML schema for specifying the secrets to populate.
<secret_mount_path>:
secrets:
<path/to/secret>:
<key>: <value>
<path/to/other_secret>:
<key>: <value>
<key>: <value>
engine: <secret engine> # supported values: kv1, kv2
patch: <boolean> # default: false; also see below
Although optimally patch
would be specified per path, this would be cumbersome in both implementation and usage, and therefore it is specified for all paths for a given mount
. When patch
is specified as true
, then (from Vault API PKG documentation):
Patch additively updates the most recent version of a key-value secret, differentiating it from Put which will fully overwrite the previous data. Only the key-value pairs that are new or changing need to be provided.
The default value of false
will trigger the Put
behavior of overwriting/replacing all values at the specified secret path. Note that the patch
nested parameter only functions if the engine is kv2, and is ignored if the engine is kv1.
resource_types:
- name: vault
type: docker-image
source:
repository: matthewschuchard/concourse-vault-resource:1.2
tag: latest
resources:
- name: vault
type: vault
source:
address: https://mitodl.vault.com:8200
auth_engine: aws
- name: vault-secret-check
type: vault
source:
address: https://mitodl.vault.com:8200
token: abcdefghijklmnopqrstuvwxyz09
secret:
engine: kv2
mount: secret
path: path/to/secret
version:
version: 3
- name: vault-secret-renew-and-check
type: vault
source:
address: https://mitodl.vault.com:8200
token: abcdefghijklmnopqrstuvwxyz09
secret:
engine: database
path: readonly
lease_id: '27e1b9a1-27b8-83d9-9fe0-d99d786bdc83'
jobs:
- name: do something
plan:
- get: my-code
- get: vault
params:
database-mitxonline:
paths:
- readonly
- other_readonly
engine: database
secret:
paths:
- path/to/secret
engine: kv2
kv:
paths:
- path/to/secret
engine: kv1
- put: vault
params:
secret:
secrets:
path/to/secret:
key: value
other_key: other_value
engine: kv2
patch: true
kv:
secrets:
path/to/secret:
key: value
path/to/other_secret:
key: value
engine: kv1
- get: vault-secret-check
Code should pass all unit and acceptance tests. New features should involve new unit tests.
Please consult the GitHub Project for the current development roadmap.