diff options
author | Wojciech Wnętrzak <w.wnetrzak@gmail.com> | 2018-09-19 23:02:00 +0200 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-19 14:02:00 -0700 |
commit | e0d3313bac6bd2fbf10df27d79d72157f63ae6ba (patch) | |
tree | 3bab715b83dff89b0ef98f2828f71af68903aec8 /railties/lib/rails/commands/credentials/USAGE | |
parent | e184d1a94e3ecfbc22823fbb9097992158a40cb2 (diff) | |
download | rails-e0d3313bac6bd2fbf10df27d79d72157f63ae6ba.tar.gz rails-e0d3313bac6bd2fbf10df27d79d72157f63ae6ba.tar.bz2 rails-e0d3313bac6bd2fbf10df27d79d72157f63ae6ba.zip |
Support environment specific credentials file. (#33521)
For `production` environment look first for `config/credentials/production.yml.enc` file that can be decrypted by
`ENV["RAILS_MASTER_KEY"]` or `config/credentials/production.key` master key.
Edit given environment credentials file by command `rails credentials:edit --environment production`.
Default behavior can be overwritten by setting `config.credentials.content_path` and `config.credentials.key_path`.
Diffstat (limited to 'railties/lib/rails/commands/credentials/USAGE')
-rw-r--r-- | railties/lib/rails/commands/credentials/USAGE | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/railties/lib/rails/commands/credentials/USAGE b/railties/lib/rails/commands/credentials/USAGE index ea429f58d8..6b33d1ab74 100644 --- a/railties/lib/rails/commands/credentials/USAGE +++ b/railties/lib/rails/commands/credentials/USAGE @@ -38,3 +38,12 @@ the encrypted credentials. When the temporary file is next saved the contents are encrypted and written to `config/credentials.yml.enc` while the file itself is destroyed to prevent credentials from leaking. + +=== Environment Specific Credentials + +It is possible to have credentials for each environment. If the file for current environment exists it will take +precedence over `config/credentials.yml.enc`, thus for `production` environment first look for +`config/credentials/production.yml.enc` that can be decrypted using master key taken from `ENV["RAILS_MASTER_KEY"]` +or stored in `config/credentials/production.key`. +To edit given file use command `rails credentials:edit --environment production` +Default paths can be overwritten by setting `config.credentials.content_path` and `config.credentials.key_path`. |