mirror of
https://github.com/jbranchaud/til
synced 2026-01-06 16:48:01 +00:00
Add Access Secrets In A Rails 5.2 App as a rails til
This commit is contained in:
19
rails/access-secrets-in-a-rails-5-2-app.md
Normal file
19
rails/access-secrets-in-a-rails-5-2-app.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# Access Secrets In A Rails 5.2 App
|
||||
|
||||
For a long time the access chain for getting at secrets in your Rails app
|
||||
stayed the same. For instance, getting at the `secret_key_base` value looked
|
||||
something like this:
|
||||
|
||||
```ruby
|
||||
Rails.application.secrets.secret_key_base
|
||||
```
|
||||
|
||||
In the world of Rails 5.2, secrets are no longer secrets. They are now
|
||||
credentials. This means they are under the `credentials` key instead of the
|
||||
`secrets` key. Here is how you can access `secret_key_base` now:
|
||||
|
||||
```ruby
|
||||
Rails.application.credentials.secret_key_base
|
||||
```
|
||||
|
||||
[source](https://www.engineyard.com/blog/rails-encrypted-credentials-on-rails-5.2)
|
||||
Reference in New Issue
Block a user