diff --git a/docs/source/boto_config_tut.rst b/docs/source/boto_config_tut.rst index 76b27b6bc7..c134397ce1 100644 --- a/docs/source/boto_config_tut.rst +++ b/docs/source/boto_config_tut.rst @@ -62,6 +62,21 @@ For example:: Please notice that quote characters are not used to either side of the '=' operator even when both your aws access key id and secret key are strings. +For greater security, the secret key can be stored in a keyring and +retrieved via the keyring package. To use a keyring, use ``keyring``, +rather than ``aws_secret_access_key``:: + + [Credentials] + aws_access_key_id = + keyring = + +To use a keyring, you must have the Python `keyring +`_ package installed and in the +Python path. To learn about setting up keyrings, see the `keyring +documentation +`_ + + Boto ^^^^