Metadata-Version: 2.1
Name: django-iam-dbauth
Version: 0.0.2
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'
            }
        }
        ```
        
        # Caveats
        
        1. You cannot use a cname for the host, it needs to be the actual hostname of
        the RDS instance.
        
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: test
Provides-Extra: docs
