From 2f8ecdb21d110ae2f862582cc31e5a10f487a3b7 Mon Sep 17 00:00:00 2001 From: Claudio B Date: Tue, 19 Sep 2017 15:08:32 -0700 Subject: Use credentials, not secrets, for Active Storage (#30650) According to #30067: > This PR will deprecate secrets.yml* and instead adopt > config/credentials.yml.enc to signify what these secrets are specifically > for: Keeping API keys, database passwords, and any other integration > credentials in one place. [ci skip] since only comments are being edited. --- guides/source/action_controller_overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source') diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index 24366ae6e9..5fb8e300de 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -400,7 +400,7 @@ Rails.application.config.session_store :cookie_store, key: '_your_app_session', Rails sets up (for the CookieStore) a secret key used for signing the session data in `config/credentials.yml.enc`. This can be changed with `bin/rails credentials:edit`. ```ruby -# amazon: +# aws: # access_key_id: 123 # secret_access_key: 345 -- cgit v1.2.3