There aren’t many rules when deploying applications to the cloud, but here’s one I think is pretty important:
Don’t commit your API keys to your git repository.
Perhaps even more important:
Don’t commit your database credentials to your git repository.
But your app needs to connect to Services and it surely needs to connect to the database. Many applications follow this pattern, demonstrated by a Rails config/database.yml
file:
That’s right, in production, this app reads the database connection string from an environment variable. Great! Now the application doesn’t need any secret credentials in the source code. But where does this environment config come from?
Deferring Responsibility
Frequently, it comes from an /etc/environment
file maintained by an Ansible guru or maybe even handcrafted by a local server shepherd.
But how far down the line does that push the responsibility of secrecy? Who is taking care of the sacred credentials? All the way to the docker container, or perhaps to the VM.
If you’re deploying to a PaaS, maybe you’re done there. As a service, they provide the database and they inject the credentials for you, perhaps even configured to serve up API keys for others services your app is connecting to.
But if you’re managing your own VMs in AWS, or even using Elastic Container Service to orchestrate a docker cloud, you’re likely to end up with your database credentials hard coded into your /etc/environment
or worse, baked into a docker image for your production application.
If your production container is downloaded, does it connect to the production database at boot? Yikes!
If your VM is cast into an AMI and then used to stamp out new instances, does each new instance come with the credentials to access your database? Yikes!
The solution is a little more delicate, but allows credentials and api keys to never be stored in an /etc/environment file, a docker container, or with the source code.
Enter State Manager
Amazon EC2 has a small utility allll the way at the bottom of that never-ending left hand pane of resources called “State Manager” under “Systems Manager Services” which stores secrets using at-rest encryption. Secrets can be requested via the AWS API, and access granted using an EC2 or ECS IAM Role.
Create a KMS key:
Upload a few secrets to your SSM “keychain”:
Now secrets can be read by API:
Application Secret Discovery
It’s necessary to configure your EC2 instance or ECS task definition to launch with an IAM role which grants access to your KMS key for decryption, and to the parameter store to read parameters with the correct path prefix.
After that, assuming your server normally launches with the command /bin/my_app
, a script like this can be used to wrap the server binary and inject the application secrets into the environment.
More Benefits
Storing credentials in a central repository not only helps prevent leaks, but it also aids in changing credentials.
Instead of needing to touch each server and update credentials manually, update everything with an Ansible run, or rebuild containers to update secrets, it’s as simple as updating a secret in one place and restarting services. Each service will fetch its own credentials again at boot and connect with the new secrets.
This post was originally written for DailyDrip.com and published on 2018-08-01. Link to the original.