Metadata-Version: 2.1
Name: django_rds_iam_auth
Version: 0.0.46
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
Provides-Extra: docs
Provides-Extra: test
License-File: LICENSE

# 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
        }
    }
}
```


