
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
django-encrypted-secrets
Advanced tools
django-encrypted-secrets
brings Rails-style credential encryption to the Django web framework.
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:
wsgi.py:
#!/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")
# ...
manage.py:
from encrypted_secrets import load_secrets, YAMLFormatException
try:
load_secrets()
except YAMLFormatException:
print("\n\n\nMALFORMED YAML IN ENCRYPTED SECRETS\n\n\n")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "yourapp.settings")
# ...
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
.
django-encrypted-secrets
experimentally supports loading key-value pairs from an encrypted file written in the dotenv format directly into the environment. To use this style of variable loading, you must pass env_mode=True
to your load_secrets
call in manage.py
and wsgi.py
:
#!/usr/bin/env python
import os
import sys
from encrypted_secrets import load_secrets
if __name__ == "__main__":
load_secrets(env_mode=True) # <- important
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "yourapp.settings")
# ...
You must also pass the --mode=env
flag to the init_secrets
management command when initializing django-encrypted-secrets
:
$ ./manage.py init_secrets --mode=env
A template encrypted dotenv-type file will be written to secrets.env.enc
. When using env mode, secrets are automatically added to the environment. This means that, in addition to being able to read secrets using the get_secret
helper method, you may also read them as ordinary environment variables. If an environment variable configured in the file already exists in the environment, it will not be overriden. This is because we assume that you may want to override variables from django-encrypted-secrets
with environment variables set in your deployment environment.
Example of reading environment variables directly from the environment and using get_secret
:
import os
from encrypted_secrets import get_secret
# option 1 - read directly from the environment:
secret_api_key = os.environ.get('SECRET_API_KEY')
# option 2 - use get_secret:
secret_api_key = get_secret('SECRET_API_KEY')
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.
FAQs
A Django app for managing secrets.
We found that django-encrypted-secrets demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.