This repository was archived by the owner on Dec 28, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ to see if you need to scale your read/write units up or down.
7070If you encounter any bugs, have questions, or would like to share an idea,
7171hit up our `issue tracker `_.
7272
73- .. _ Boto : https://github.com/boto/boto
73+ .. _ Boto3 : https://github.com/boto/boto3
7474.. _issue tracker : https://github.com/gtaylor/django-dynamodb-sessions/issues
7575
7676Configuration
@@ -89,15 +89,26 @@ The following settings may be used in your ``settings.py``:
8989 This may lead to slightly slower queries,
9090 but you'll never miss object
9191 creation/edits. Defaults to ``True ``.
92+ :DYNAMODB_SESSIONS_BOTO_SESSION: Used instead of providing access_key and
93+ region, the `boto3.session.Session <http://boto3.readthedocs.org/en/latest/reference/core/session.html >`_
94+ containing authentication for the AWS account
95+ to use for DynamoDB.
9296:DYNAMODB_SESSIONS_AWS_ACCESS_KEY_ID: The access key for the AWS account
9397 to use for DynamoDB.
9498:DYNAMODB_SESSIONS_AWS_SECRET_ACCESS_KEY: The secret for the AWS account
9599 to use for DynamoDB.
96100:DYNAMODB_SESSIONS_AWS_REGION_NAME: The region to use for DynamoDB.
97101
102+
98103Changes
99104-------
100105
106+ 0.7
107+ ^^^
108+
109+ * Switch to boto3 rather than boto for AWS access.
110+ * Allow passing of boto3 session rather than AWS credentials.
111+
1011120.6
102113^^^
103114
Original file line number Diff line number Diff line change 11__author__ = 'gtaylor'
22# Major, minor
3- __version__ = (0 , 6 )
3+ __version__ = (0 , 7 )
You can’t perform that action at this time.
0 commit comments