4 ways to inject secrets into an application

Mickaël Canévet - Aug 24 '20 - - Dev Community

Most applications require secrets, for example to connect to a database, communicate with another application using tokens or certificates, define an admin password…

Dealing with this is often a headache. Even when you have a proper secret management tool, it's sometimes a nightmare to inject the secrets into the application where it needs to be used.

The 4 ways

First way: build time

This is probably the worst way to do it.

Examples:

  • Build a WAR file, or a Docker image or any artifact with a configuration file that contains the secret in plain text.

Pros:

  • Your deployment tool does not need permissions to decrypt the secrets.

Cons:

  • Your whole artifact becomes a secret;
  • You have to rebuild and redeploy when you want to renew a secret.

Second way: deploy time

Examples:

  • Give a Continuous Deployment pipeline access to a secrets store an let it inject the secrets in the application's configuration files;
  • Give a Continuous Deployment tool, like ArgoCD, access to a secrets store an let it inject the secrets in the application's configuration files.

Pros:

  • You don't have to rebuild when you want to renew a secret.

Cons:

  • Your deployment tool needs permissions to retrieve and decrypt the secrets;
  • You have to redeploy when you want to renew a secret.

Third way: start time

Examples:

Pros:

  • Your deployment tool does not need permissions to decrypt the secrets;
  • You don't have to redeploy when you want to renew a secret.

Cons:

  • You need to restart your application when you want to renew a secret.

Forth way: run time

Examples:

  • AWS instance profiles;
  • HashiCorp Vault as secret store and Vault Agent Injector in sidecar mode.

Pros:

  • You can renew your secret without even having to restart your application, allowing a dynamic secrets mechanism.

Cons:

  • You probably need to adapt your application (or not if you already use an SDK that supports it).

Conclusion

Do you know any more ways to inject secrets in your applications? Let me know in the comments!

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player