Spectral now part of Check Point’s CloudGuard to provide the industry’s most comprehensive security platform from code to cloud Read now

How to fix secrets drift with Teller

By Dotan Nahum June 30, 2021

Teller is an open-source secrets management tool for developers built in Go. It helps you manage, protect, and fix problems in your code and security posture when it comes to your vaults and key stores. Teller also lets you securely control all of your stores in one place.

In addition, Teller encourages developer environment hygiene. Acting as a process runner, it will never give a child process being run secrets that the owning shell process may contain. Every process is run with a context that is on a need-to-know basis.

Why We Keep Secrets In Many Places

If you’re part of a modern development team or a growing organization, it is very easy to find yourself looking at an architecture that uses multiple cloud providers, employing different building blocks from each to optimize for various important concerns (such as scale, cost, as well as speed, and ease of development).

Multiple Cloud Providers

In the blueprint below, we see a typical solution. In it, the main app (read-heavy) is built on Heroku and some other API built as a microservice for ingesting events (write-heavy) built for scaling dynamically on AWS Lambda.

Heroku is the poster child of what we know today as “gitops”. It empowers small teams to be extremely effective and fast. In addition, AWS’ Lambda is arguably the most common and simple way to solve for scale dynamically today by providing teams with a “fire and forget” solution for scale.

These days, the fact that this means running on “multiple clouds” doesn’t even register. You keep the codebase in a monorepo, same language (say, node.js + Typescript), use fantastic tooling like lerna, serverless, and the heroku toolchain, and you don’t feel any friction or overhead.

In terms of how you built this system, more often than not you’ll be gluing lots of APIs. From using AWS itself to services such as Mailgun, Sentry for monitoring, and others. Sooner than later, you’ll have to reason about how to maintain their secrets and access detail.

In the diagram below, let’s look at one example of how to safely and responsibly maintain secrets throughout this architecture.

Multiple Environments

If we take Heroku as our example of PaaS (platform as a service), a typical app commonly has various environments or stages:

Specifically for this example, it is sometimes necessary to share some settings (not necessarily secret settings, but perhaps private settings). It is also common to confine secrets dedicated for each environment (a production database is very much separated from all other databases, for example).

Vaults And Systems Of Record

In all of these scenarios, we use Hashicorp Vault as a source of truth (or system of record) and from there, sync various other services with it:

  • AWS Secret Manager – from which our Lambda pulls parameters
  • Heroku Settings – from which our Heroku app gets its settings and secrets
  • Jenkins – which runs a few maintenance jobs for us, some using our codebase which needs secrets, and some using external APIs, which again, needs secrets

As a general principle, it makes sense in some cases to mirror the set of secrets and in other cases to pick and choose what you want to copy to keep in sync.

It is worth noting that we could have picked another vault or a different service to be the source of truth. However, as long as we create a reasonable path and flow of data, it becomes a good architectural practice. As opposed to no guideline at all, which encourages chaos in saving, maintaining, and reasoning about data. In this case very sensitive data.

What Is Secrets Drift?

Secret drift is when you have knowledge of the set of secrets that are needed in a specific context. These are true at one point in time. As time transpires this knowledge and reality grow apart.

For example, you might require that production database credentials are available and visible only to production environments. However, one day you realize someone made a manual copy of it to staging so that they could reproduce a production issue.

Another example is when you might require that your Jenkins cluster never see any secrets other than a very specific set of API tokens that you’ve approved. Until one day you realize these tokens are no longer valid, and a rotated set of tokens were not updated to that system.

The problem of secret drift or more generally: settings drift can happen due to several reasons:

  • No guideline in the organization with every person keeps secrets or settings how they see fit: in local files, or .nev files, ad-hoc key stores, password apps such as 1password, and others. In this case, drift is a by-nature and by-design; there’s virtually no way to resolve it other than cross your fingers and hope no one makes a mistake.
  • A guideline is set. It can range from “everyone should use vaults to store secrets” or “we store secrets in gitcrypt inside git repos only”. Drift happens when this guideline is kept but there is no overarching architecture and process to align all teams.
  • A guideline and an architecture are set for an organization. In this case, a proper architecture drives processes, and guidelines are performed by nature of the design of the system. Drift happens when there are no appropriate tools to empower the process, and alignment is performed manually.

Fixing Secrets Drift With Teller: Step-by-Step Guide

You can grab a release from Github or use Homebrew:

$ brew tap spectralops/tap && brew install teller

Alternatively, if you’re setting up a CI pipeline, you can use Github Actions:

- name: Setup Teller
  uses: spectralops/setup-teller@v1
- name: Run a Teller task (show, scan, run, etc.)
  run: teller [task] [args]

You can check your installation by running teller version:

$ teller version
Teller 1.3.0
Revision f49ff9dfd0cdc049ec7450b7c31bbf880746d99d, date: 2021-06-08T09:13:27Z

Creating Your Configuration

Teller lets you mix multiple different types of secret stores and key-value stores, and have many stores of the same type as well all in the same place.

You start by defining your various providers and creating a mapping that serves as metadata. This metadata is used by Teller as instructions for how to: show, copy, sync, and run process using these secrets or values.

The benefit is that you create one mapping for your architecture, which is risk-free to support modern architectures and best practices. For example, this is safer than .env files which helps you support some good practices such as 12-factor apps but actually contain your secrets verbatim.

teller configuration

After you’ve set up your teller.yml config with the built-in wizard, you would end up with something like this:

project: project_name
opts:
  stage: development

# remove if you don't like the prompt
confirm: Are you sure you want to run in {{stage}}?

providers:
  # uses environment vars to configure
  # https://github.com/hashicorp/vault/blob/api/v1.0.4/api/client.go#L28
  hashicorp_vault:
    env_sync:
      path: secret/data/{{stage}}/services/billing

  heroku:
    env_sync:
      path: billing-{{stage}}

This configuration says that we recognize our Vault and Heroku as two places where secrets appear (or any key-value material for that matter). We’re treating Heroku as a separate deployment per stage, while Vault keeps each environment in a different sub-tree (just by our use of the {{stage}} template variable).

This simple configuration enables us to perform multiple different operations such as:

  • Run a process using secrets stored on these providers
  • Validate what’s there – show the keys (but not secrets)
  • Sync providers
  • Analyze and detect drift
  • Fix drift
  • And more

Looking At What’s There

$ teller show

This command will print out a nice formatted list of keys and values (masking the values)

Detecting Drift Between Providers

Here’s a nice exercise you could do by setting up two local .env files that are different, and seeing how the drift analysis works.

To detect mirrored providers (you expect providers to mirror one another):

$ teller mirror-drift --source global-dotenv --target my-dotenv

Drifts detected: 2

changed [] global-dotenv FOO_BAR "n***** != my-dotenv FOO_BAR ne*****
missing [] global-dotenv FB 3***** ??

Teller also has an ability to link between specific values in different providers, forming a graph of relationship. To detect providers that are expected to mirror through a graph, such as in this configuration:

providers:
  dotenv:
    env_sync:
      path: ~/my-dot-env.env
      source: s1
  dotenv2:
    kind: dotenv
    env_sync:
      path: ~/other-dot-env.env
      sink: s1

Where a source and sync relationship is labeled as s1, we use:

$ teller graph-drift dotenv dotenv2 -c your-config.yml

This accepts any number of providers to participate in the graph building process and then, detection.

In both methods, drift detection will enumerate all of your providers and cross-check one against the other, finally showing you a summary of where you stand.

You can also run drift analysis as a regular part of your CI/CD pipeline, promoting security through the pipeline. It should indicate no drift or drift as the appropriate UNIX exit code and you could break a build using that.

Here’s an example of how to incorporate drift detection as part of your Github CI pipeline using the Teller Github Action:

- name: Setup Teller
  uses: spectralops/setup-teller@v1
- name: Run a Teller task (show, scan, run, etc.)
  run: teller mirror-drift --source global-dotenv --target my-dotenv

Mirroring

mirroring

You can copy from one provider to one or more destinations by running:

$ teller copy --from vault --to heroku

This will copy specifically mapped keys in the source provider to specifically mapped ones in the target providers, which is common when you want to only mirror a set of selected keys.

With this technique, you can run a scheduled job that will always maintain parity between providers (because keys are well-known and specific).

Sync

sync

You can perform a full sync copy (all keys to all keys) which is common when you want to fully mirror providers with:

$ teller copy --sync --from vault --to heroku

Summary

By using Teller, you’re not only acknowledging a more modern approach and best practices to using secrets but putting the right tooling behind it. Teller is open source, and we’re accepting pull-requests for new providers, as well as requests for more workflows.

Related articles

The Advanced Guide to Using Kubernetes Secrets

Did you know that Kubernetes is one of the leading open-source projects globally, boasting contributors from Google, Microsoft, and many other tech giants? Kubernetes enjoys the

Top 8 Software Composition Analysis (SCA) Tools for 2023

Top 8 Software Composition Analysis (SCA) Tools for 2023

The software development landscape moves quickly. As organizations seek to innovate at increasing speed, developers find ways to develop and deploy digital apps faster. More than

Top 10 Security Automation Tools

Top 10 Security Automation Tools

With the increasing threats of cyber attacks, safeguarding sensitive data and digital assets has become one of the key considerations of modern organizations. According to The

Stop leaks at the source!