A Django app for managing secrets.
Project description
django-encrypted-secrets
django-encrypted-secrets
brings Rails-style encrypted credentials to the Django web framework.
Installation
To install django-encrypted-secrets
, first pip install the module:
$ pip install django-encrypted-secrets
Add encrypted_secrets
to INSTALLED_APPS in your django settings file:
INSTALLED_APPS = [
...
'encrypted_secrets'
]
Finally, you must call load_secrets()
from within your manage.py
and wsgi.py
files:
#!/usr/bin/env python
import os
import sys
from encrypted_secrets import load_secrets
if __name__ == "__main__":
load_secrets()
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "yourapp.settings")
# ...
Usage
django-encrypted-secrets
works by using a key (stored locally in master.key
file or read from the environment variable DJANGO_MASTER_KEY
) and reading/writing secrets to the encrypted file secrets.yml.enc
.
./manage.py init_secrets
You can edit the secrets by running:
./manage.py edit_secrets
When you save the file in your editor, its contents are encrypted and used to overwrite the secrets.yml.enc
file.
Finally, to read secrets within your codebase, use the get_secret
utility:
from encrypted_secrets import get_secret
# ...
secret_api_key = get_secret("secret_api_key")
You should always keep your master.key
file .gitignored
.
Production considerations
django-encrypted-secrets
looks for the encrypted secrets file within the current working directory from which you execute management commands (using os.getcwd()
). This is implicitly the project root directory. Depending on your production server configuration, os.getcwd()
may not actully return the project root. For production, we therefore recommend you explicitly set a DJANGO_SECRETS_ROOT
environment variable pointing to the project root to hint to django-encrypted-secrets
where it should look for the encrypted secrets file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-encrypted-secrets-0.9.0.tar.gz
.
File metadata
- Download URL: django-encrypted-secrets-0.9.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcadb2626d3ad142e196ab9fddb94072276ac29f9ecd2b35b2ff15f07dcc14ec |
|
MD5 | bab85e29f917649cc5e7da7687e1f069 |
|
BLAKE2b-256 | 9d4dc08ed26158e25fe2c5afc10154acf36890eec3c17db312859b4bd0ae760b |
File details
Details for the file django_encrypted_secrets-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: django_encrypted_secrets-0.9.0-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91a6b337d2909594685f93a9ef89300d08b92ef5c57188e0e4b6fd3d124f41df |
|
MD5 | 232eefc2d042dc3a99f38df809619921 |
|
BLAKE2b-256 | 49ef2d0c7f7d05419e1780a48b479ff6a1eb01a04145baad6ac8809b61cebd99 |