Metadata-Version: 2.1
Name: django-rds-iam-auth
Version: 0.0.6
Summary: Django database backends to use AWS Database IAM Authentication
Home-page: https://github.com/LabD/django-iam-dbauth
Author: Lab Digital
Author-email: admin@ibrag.me
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django (>=1.11)
Requires-Dist: boto3
Requires-Dist: dnspython
Provides-Extra: docs
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'
Requires-Dist: pretend ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: pytest-mock ; extra == 'test'
Requires-Dist: pytest-django ; extra == 'test'

# Django IAM database backends


## Usage

```shell
pip install django-rds-iam-auth
```

In your settings use the following

```python
DATABASES = {
    "default": {
        "HOST": "<hostname>",
        "USER": "<user>",
        "ENGINE": 'django_rds_iam_auth.aws.postgresql'
        "OPTIONS": {
            "use_iam_auth": True
        }
    }
}
```


