Cloud secrets
Cloud Secrets
Important
This feature is currently in Experimental stage
The feature may break, be changed drastically with no warning, or be removed altogether in future versions of Earthly.
Check the GitHub tracking issue for any known problems.
Give us feedback on Slack in the
#cloud-secrets
channel.
Earthly has the ability to use secure cloud-based storage for build secrets. This page goes through the basic setup and usage examples.
Cloud secrets can be used to share secrets between team members or across multiple computers and a CI systems.
Introduction
This document covers the use of cloud-hosted secrets. It builds upon the understanding of build arguments and locally-supplied secrets.
Managing secrets
In order to be able to use cloud secrets, you need to first register an Earthly cloud account and create an Earthly org. Follow the steps in the Earthly Cloud overview to get started.
Interacting with the private user secret store from the command line
Each user has a non-sharable private user space which can be referenced by /user/...
; this can be thought of as your home directory. To view this workspace, try running:
Secrets are referenced by a path, and can contain up to 512 bytes.
Setting a value
To set a secret value, use the secrets set
command:
Getting a value
To view a secret value, use the secrets get
command:
Using cloud secrets in builds
Cloud secrets can be referenced in an Earthfile, in a similar way to locally-defined secrets.
Consider the Earthfile:
The env variable MY_KEY
will be set with the value stored under your private /user/my_key
secret.
You can build it via:
Naming of local and cloud-based secrets
The only difference between the naming of locally-supplied and cloud-based secrets is that cloud secrets will contain two or more slashes since all cloud secrets must start with a +secrets/<user or organization>/
prefix, whereas locally-defined secrets will only start with the +secrets/
suffix, followed by a single name which cannot contain slashes.
Sharing secrets
To share secrets between teams, an organization must first be created:
Then additional users can be invited into the organization:
By default this will grant the invited user read privileges to all keys under the organization. It's also possible to use the --write
flag to grant write permission too. Additionally, the permissions can be set to lower paths.
Sharing example
Alice and Bob sign up for earthly accounts using alice@example.com and bob@example.com respectively:
Alice then creates an organization called hush-co:
Alice then creates a secret under the project-zulu
sub directory:
Alice then grants Bob read permission on all of project-zulu
:
Bob now has permission to everything under the /hush-co/project-zulu/
directory. If he runs
he will see:
However if Alice were to create any secrets outside of project-zulu
, Bob would not be able to list or retrieve them.
Using cloud secrets in CI
To reference secrets from a CI environment, you can make use of the password or ssh-key authentication referenced under the login/logout section, or you can generate an authentication token by running:
This token can then be exported as
Which will then force Earthly to use that token when accessing secrets. This is useful for cases where running an ssh-agent is impractical.
Security Details
The Earthly command uses HTTPS to communicate with the cloud secrets server. The server encrypts all secrets using OpenPGP's implementation of AES256 before storing it in a database. We use industry-standard security practices for managing our encryption keys in the cloud. For more information see our Security page.
Secrets are presented to BuildKit in a similar fashion as locally-supplied secrets: When BuildKit encounters a RUN
command that requires a secret, the BuildKit daemon will request the secret from the earthly command-line process -- earthly
will then make a request to earthly's cloud storage server (along with the auth token); once the server returns the secret, that secret will be passed to BuildKit.
Feedback
The secrets store is still an experimental feature, we would love to hear feedback in our Slack community.
Last updated