A simple Django database backend that allows rotating PostgreSQL access credentials via HashiCorp Vault
In your Django settings:
DATABASES = {
'default': {
'ENGINE': 'django_postgres_vault',
'NAME': os.getenv('DB_NAME'),
'HOST': os.getenv('DB_HOST'),
'PORT': os.getenv('DB_PORT'),
'VAULT_ADDR': os.getenv('VAULT_ADDR'),
'VAULT_TOKEN': os.getenv('VAULT_TOKEN'),
'VAULT_ROLE_NAME': os.getenv('VAULT_ROLE_NAME'),
'VAULT_DB_MOUNT_POINT': os.getenv('VAULT_DB_MOUNT_POINT'),
}
}Explanation of settings:
NAME: The name of the Postgres database to connect to, as per Django standards.HOST: The host location of the Postgres database to connect to, as per Django standards.PORT: The host location port of the Postgres database to connect to, as per Django standards.VAULT_ADDR: The URL of the Vault server that will be providing rotating access credentials for the database. This is the same value as theVAULT_ADDRenvironment variable used by the Vault CLI command. Example:https://vault-host-name:8200VAULT_DB_MOUNT_POINT: The mount point of the database secrets engine in Vault. Default:databaseVAULT_ROLE_NAME: The name of a Vault database secrets engine role configured to provide Postgres credentials.VAULT_TOKEN: A Vault authentication token with read access to the database secrets engine role.
There are no USER or PASSWORD settings required because those will be dynamically provided by the Vault server. The settings can be provided, but will be ignored.
pip install django_postgres_vault
- Django>=3.0
- psycopg2
- hvac
Django and hvac should be automatically installed by pip, but psycopg2 will require manual installation. psycopg2 or psycopg2-binary are both acceptable, but explicitly requiring either one in setup.py will make the library less usable for some users, so we defer on that front.
We officially support the most recent version of Django (3.0), as well as its supported Python versions (3.6, 3.7, 3.8). Other versions will most likely work, but there are no guarantees.
MIT Licensed (see LICENSE)
Testing is done using Tox and PyTest. A super-simple Dockerfile is provided to allow running Tox in an isolated container.
django_postgres_vault was written by Joe Ciskey.