Metadata-Version: 2.1
Name: django-iam-dbauth
Version: 0.1.4
Summary: Django database backends to use AWS Database IAM Authentication
Home-page: https://github.com/LabD/django-iam-dbauth
Author: Lab Digital
Author-email: opensource@labdigital.nl
License: MIT
Description: # Django IAM database backends
        
        
        ## Usage
        
        ```shell
        pip install django-iam-dbauth
        ```
        
        In your settings use the following
        
        ```python
        DATABASES = {
            "default": {
                "HOST": "<hostname>",
                "USER": "<user>",
                "ENGINE": 'django_iam_dbauth.aws.postgresql'
                "OPTIONS": {
                    "use_iam_auth": True
                }
            }
        }
        ```
        
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
