This is intended to be a lighter, alternative, implementation of the Vault client CLI primarily for services and containers. Its core features are the ability to automate authentication, fetching of secrets, and automated token renewal.
Previously authentication to, and secret retrevial from, Vault via a server or container was a delicate balance of shell scripts or potentially lengthy http implementations, similar to:
vault login -token-only -method=$METHOD role=$VAULT_ROLE"
THING="$(vault read -field=key secret/path/to/thing)"
ANOTHER_THING="$(vault read -field=key secret/path/to/another/thing)"
echo $THING | app
...
Instead, a single binary can be used to accomplish most of these goals.
The following authentication methods are supported:
-
Kubernetes - To be used with the Vault Kubernetes Auth Backend. Uses the JWT of the bound kubernetes service account as described in the official Vault documentation. Intended for use as an
initContainer
, sidecar container, or entrypoint; for managing secrets within a pod. -
AWS IAM - To be used with the Vault AWS Auth Backend. Uses the IAM Role for Vault authentication. Intended for use on AWS resources that utilize IAM roles.
-
GCP IAM - To be used with the Vault GCP Auth Backend. Uses GCP service accounts for IAM Vault authentication. Intended for use with GCP resources that utilize bound service accounts.
daytona
gives you the ability to pre-fetch secrets upon launch and store them either in environment variables or a specified JSON file after retrievial. The desired secrets are specified in one of two ways:
- By providing environment variables prefixed with
VAULT_SECRET_
+ the Vault path where the secret exists in Vault that can be read. This will fetch an individual secret in Vault. - By providing environment variables prefixed with
VAULT_SECRETS_
+ the Vault path where the secrets exist in Vault that can be listed and then read. This will fetch all secrets within the given Vault directory.
Any unique value can be appended to VAULT_SECRET_
in order to provide the ability to supply multiple secret paths. e.g. VAULT_SECRETS_APPLICATION=secret/path/to/my/application/directory
, VAULT_SECRETS_COMMON=secret/path/common
, VAULT_SECRET_1=secret/path/to/individual/secret
.
If a secret in Vault has a corresponding environment variable pointed at a file location prefixed with DAYTONA_SECRET_DESTINATION
then the secret is written to that location instead of the default destination. For example, if VAULT_SECRET_API_KEY=secret/path/to/API_KEY
and DAYTONA_SECRET_DESTINATION_API_KEY='/etc/api.conf'
are defined then the key is written to /etc/api.conf instead of the default location. Other keys are written at the normal location as defined by their VAULT_SECRET
value.
Fetched secrets can be output to a file in JSON format via the -secret-path
flag or to enviornment variables via -secret-env
. Because docker containers cannot set eachother's environment variables, -secret-env
will have no effect unless used with the -entrypoint
flag, so that any populated environment variables are passed to a provided executable.
daytona
prefers secret data containing the key value
, but is able to detect other key names (this decreases readability, as you'll see later below). For example:
the secret secret/path/to/database
should have its data stored as:
{
"value": "databasepassword"
}
If -secret-env
is supplied at runtime, the above example would be written to an environment variable as DATABASE=databasepassword
, while -secret-path /tmp/secrets
would be written to a file as:
{
"database": "password"
}
If data within a secret is stored as multiple key-values, which is the non-preferred
format, then the secret data will be stored as a combination of SECRETNAME_DATAKEYNAME=value
. For example, if the Vault secret secret/path/to/database
has multiple key-values:
{
"db_username": "foo",
"db_password": "databasepassword"
}
then a secret's data will be fetched by daytona
, and stored as variables DATABASE_DB_USERNAME=foo
and DATABASE_DB_password=databasepassword
, or respectively, written to a file as:
{
"database_db_username": "foo",
"database_db_password": "databasepassword"
}
Top Level Path Iteration
Consider the following path, secret/path/to/directory
which when listed, contains the following secrets:
database
api_key
moredatahere/
daytona
would iterate through all of these values attempting to read their secret data. Because moredatahere/
is a subdirectory in a longer path, it would be skipped.
Direct Path
If provided a direct path secret/path/to/database
, daytona
will process secret data as outlined in the Data and Secret Key Layout section above.
You have configured a vault k8s auth role named awesome-app-vault-role-name
that contains the following configuration:
{
"bound_service_account_names": [
"awesome-app"
],
"bound_service_account_namespaces": [
"elite-squad"
],
"policies": [
"too-permissive"
],
"ttl": 3600
}
K8s Pod Definition Example:
Be sure to populate the serviceAccountName
and VAULT_AUTH_ROLE
with the corresponding values from your vault k8s auth role as described above.
---
apiVersion: v1
kind: Pod
metadata:
name: awesome-app
spec:
volumes:
- name: vault-secrets
emptyDir:
medium: Memory
initContainers:
serviceAccountName: awesome-app
- name: daytona
image: gcr.io/supa-fast-c432/daytona@sha256:abcd123
securityContext:
runAsUser: 9999
allowPrivilegeEscalation: false
volumeMounts:
- name: vault-secrets
mountPath: /home/vault
env:
- name: K8S_AUTH
value: "true"
- name : K8S_AUTH_MOUNT
value: "kubernetes-gcp-dev-cluster"
- name: SECRET_ENV
value: "true"
- name: TOKEN_PATH
value: /home/vault/.vault-token
- name: VAULT_AUTH_ROLE
value: awesome-app-vault-role-name
- name: SECRET_PATH
value: /home/vault/secrets
- name: VAULT_SECRETS_APP
value: secret/path/to/app
- name: VAULT_SECRETS_GLOBAL
value: secret/path/to/global/metrics
Note the securityContext
provided above. Without it, the daytona container runs as UID 0, which is root. Because daytona writes files with 0600
permissions, the files are only readable by a user with the same UID. It is necessary to run your other containers in the pod with the same securityContext
in order to read the files that daytona places.
The example above, assuming a successful authentication, would yield a vault token at /home/vault/.vault-token
and any specified secrets written to /home/vault/secrets
as
{
"api_key": "supersecret",
"database": "databasepassword",
"metrics": "helloworld"
}
the secrets written above would be the representation of the following vault data:
secret/path/to/app/api_key
{
"value": "supersecret"
}
secret/path/to/app/database
{
"value": "databasepassword"
}
secret/path/to/global/metrics
{
"value": "helloworld"
}
AWS IAM Example - Writing to a File:
Assume you have the following Vault AWS Auth Role, vault-role-name
:
{
"auth_type": "iam",
"bound_iam_principal_arn": [
"arn:aws:iam::12345:role/my-role"
],
"policies": [
"my-ro-policy"
]
}
VAULT_SECRETS_TEST=secret/path/to/app/secrets daytona -iam-auth -token-path /home/vault/.vault-token -vault-auth-role vault-role-name -secret-path /home/vault/secrets
The execution example above (assuming a successful authentication) would yield a vault token at /home/vault/.vault-token
and any specified secrets written to /home/vault/secrets
as
{
"secrets_secretA": "hellooo",
"secrets_api_key": "supersecret"
}
as a representation of the following vault data:
secret/path/to/app/secrets
{
"secretA": "hellooo",
"api_key": "supersecret"
}
AWS IAM Example - As a container entrypoint:
In a Dockerfile
:
ENTRYPOINT [ "./daytona", "-secret-env", "-iam-auth", "-vault-auth-role", "vault-role-name", "-entrypoint", "--" ]
combined with supplying the following during a docker run
:
-e "VAULT_SECRETS_APP=secret/path/to/app"
would yield the following environment variables in a container:
API_KEY=supersecret
DATABASE=databasepassword
as a representation of the following vault data:
secret/path/to/app/api_key
{
"value": "supersecret"
}
secret/path/to/app/database
{
"value": "databasepassword"
}
AWS IAM Example - As a container entrypoint, for requesting a PKI certificate:
In a Dockerfile
:
ENTRYPOINT [ "./daytona", "-iam-auth", "-vault-auth-role", "vault-role-name", "-pki-issuer", "pki-backend", "-pki-role", "my-role", "-pki-domains", "www.example.com", "-pki-cert", "/etc/cert.pem", "-pki-privkey", "/etc/key.pem", "-pki-use-ca-chain", -entrypoint", "--" ]
Given a PKI backend issuer role located at pki-backend/issue/my-role
, and update
permissions granted to vault-role-name
on this path, Daytona will request a certificate for www.example.com
from Vault, placing the certificate (with CA chain) and private key in /etc
.
N.b.:
- The role should have
www.example.com
configured in itsallowed_domains
- Before setting
-pki-use-ca-chain
, verify whether the PKI backend in question has the full chain at<pki-backend>/ca_chain
- Some Vault PKI backends may have the full chain (including the root), while others may only have the intermediates.
- Services using this cert/chain may refuse to accept a cert with the root in the chain - use with caution.
GCP GCE Example - Writing to a File:
Assume you have the following Vault GCP Auth Role:
{
"bound_projects": [
"my-project"
],
"bound_service_accounts": [
"[email protected]"
],
"policies": [
"my-ro-policy"
],
"type": "iam"
}
VAULT_SECRETS_TEST=secret/path/to/app/secrets daytona -gcp-auth -gcp-svc-acct [email protected] -token-path /home/vault/.vault-token -vault-auth-role vault-gcp-role-name -secret-path /home/vault/secrets
The execution example above (assuming a successful authentication) would yield a vault token at /home/vault/.vault-token
and any specified secrets written to /home/vault/secrets
as
{
"secrets_secretA": "hellooo",
"secrets_api_key": "supersecret"
}
as a representation of the following vault data:
secret/path/to/app/secrets
{
"secretA": "hellooo",
"api_key": "supersecret"
}
Security Consideration - When using the GCP IAM Auth type, ensure that the capability for the GCP SA to use the signjwt
permission is limited only to the service accounts you wish to authenticate with to Vault. Providing your GCP SA the signjwt
permission, such as through iam.serviceAccountTokenCreator
, when done at the project level will over-authorize your service account to be able to sign JWTs of any other service account in the project, thus impersonating them. It is best practice to bind these permissions against the service account itself, and not at the project level. For more information, see the GCP Documentation on how to grant permissions against a specific service account.
Building is easy to do. Make sure to setup your local environment according to https://golang.org/doc/code.html. Once setup, you should be able to build the binaries using the following command:
make build
Tests are run via:
make test
Usage of ./daytona:
-address string
Sets the vault server address. The default vault address or VAULT_ADDR environment variable is used if this is not supplied
-auto-renew
if enabled, starts the token renewal service (env: AUTO_RENEW)
-aws-auth
select AWS IAM vault auth as the vault authentication mechanism (env: IAM_AUTH)
-entrypoint
if enabled, execs the command after the separator (--) when done. mostly useful with -secret-env (env: ENTRYPOINT)
-gcp-auth
select Google Cloud Platform IAM auth as the vault authentication mechanism (env: GCP_AUTH)
-gcp-auth-mount string
the vault mount where gcp auth takes place (env: GCP_AUTH_MOUNT) (default "gcp")
-gcp-svc-acct string
the name of the service account authenticating (env: GCP_SVC_ACCT)
-iam-auth
(legacy) select AWS IAM vault auth as the vault authentication mechanism (env: IAM_AUTH)
-iam-auth-mount string
the vault mount where iam auth takes place (env: IAM_AUTH_MOUNT) (default "aws")
-infinite-auth
infinitely attempt to authenticate (env: INFINITE_AUTH)
-k8s-auth
select kubernetes vault auth as the vault authentication mechanism (env: K8S_AUTH)
-k8s-auth-mount string
the vault mount where k8s auth takes place (env: K8S_AUTH_MOUNT, note: will infer via k8s metadata api if left unset) (default "kubernetes")
-k8s-token-path string
kubernetes service account jtw token path (env: K8S_TOKEN_PATH) (default "/var/run/secrets/kubernetes.io/serviceaccount/token")
-max-auth-duration int
the value, in seconds, for which DAYTONA should attempt to renew a token before exiting (env: MAX_AUTH_DURATION) (default 300)
-pki-cert string
a full file path where the vault-issued x509 certificate will be written to (env: PKI_CERT)
-pki-domains string
a comma-separated list of domain names to use when requesting a certificate (env: PKI_DOMAINS)
-pki-issuer string
the name of the PKI CA backend to use when requesting a certificate (env: PKI_ISSUER)
-pki-privkey string
a full file path where the vault-issued private key will be written to (env: PKI_PRIVKEY)
-pki-role string
the name of the PKI role to use when requesting a certificate (env: PKI_ROLE)
-pki-use-ca-chain
if set, retrieve the CA chain and include it in the certificate file output (env: PKI_USE_CA_CHAIN)
-renewal-increment int
the value, in seconds, to which the token's ttl should be renewed (env: RENEWAL_INCREMENT) (default 43200)
-renewal-interval int
how often to check the token's ttl and potentially renew it (env: RENEWAL_INTERVAL) (default 300)
-renewal-threshold int
the threshold remaining in the vault token, in seconds, after which it should be renewed (env: RENEWAL_THRESHOLD) (default 7200)
-secret-env
write secrets to environment variables (env: SECRET_ENV)
-secret-path string
the full file path to store the JSON blob of the fetched secrets (env: SECRET_PATH)
-token-path string
a full file path where a token will be read from/written to (env: TOKEN_PATH) (default "~/.vault-token")
-vault-auth-role string
the name of the role used for auth. used with either auth method (env: VAULT_AUTH_ROLE, note: will infer to k8s sa account name if left blank)
DAYTONA is not deployed to any public image registry as we'd like to assume you're comfortable with deploying this somewhere that you trust.
Building a docker image:
make image
Use the REGISTRY
environment variable to define where you'd like the image to be pushed:
REGISTRY=gcr.io/supa-fast-c432 make push-image
Or, you can simply deploy the binary. It can be built via:
make build
Copyright 2019 GM Cruise LLC
Licensed under the Apache License Version 2.0 (the "License"); you may not use this project except in compliance with the License.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributions are welcome! Please see the agreement for contributions in CONTRIBUTING.md.
Commits must be made with a Sign-off (git commit -s
) certifying that you
agree to the provisions in CONTRIBUTING.md.