How to store sensitive credentials in Rails
11 March 2022 (Updated 11 March 2022)
Store credentials
You can store sensitive credentials such as API keys in the encrypted file config/credentials.yml.enc
. Run:
By default, this should open up a file that looks like this:
Rails will use config/master.key
or the environment variable RAILS_MASTER_KEY
to encrypt this file. Make sure you save the contents config/master.key
somewhere (e.g., LastPass) and keep it out of Git.
Access credentials
Given this decrypted config/credentials.yml.enc
:
Rails.application.credentials.some_api_key
returns "SOMEKEY"
and Rails.application.credentials.system.access_key_id
returns 1234AB
.
Raise error if credential is missing
Notice the the !
suffix.
You can also do this for nested attributes:
Sources
Tagged:
Rails
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment