Skip to main content

Django package for managing a single root encryption key and decrypting embedded secrets.

Project description

django-root-secret

Tests

django-root-secret is a Django package for managing one root encryption key per environment and decrypting encrypted literals at runtime.

django-root-secret reduces the number of plaintext secrets you need to manage and tries to minimize the number of environment variables your project depends on. Large .env files are a common source of configuration errors because variables can be missing, misnamed, outdated, or inconsistent across environments. This package keeps the env file minimal by storing only ROOT_ENCRYPTION_KEY there and encrypting the rest.

Installation

Install the package:

pip install django-root-secret

Add the app to INSTALLED_APPS:

INSTALLED_APPS = [
    ...,
    "django_root_secret",
]

Commands

Generate a root key file:

python manage.py generate_root_encryption_key --env development

This creates development.env in the current working directory with only:

# This file must only contain ROOT_ENCRYPTION_KEY.
# Encrypt every other secret with this key and keep the file private.
ROOT_ENCRYPTION_KEY=...

If development.env is not already ignored by Git, the command also adds it to .gitignore.

Encrypt a plaintext secret using that file and bring up a prompt to paste the secret:

python manage.py encrypt_secret --env development
# Value to encrypt: [hidden input]

At runtime, make ROOT_ENCRYPTION_KEY available through your environment or deployment secret manager:

export ROOT_ENCRYPTION_KEY="..."

Then use the encrypted output in code:

from django_root_secret import get_secret

DATABASE_PASSWORD = get_secret("gAAAAAB...")

Note

This package started as an internal tool at Hipo, and it brings back memories of a team I still appreciate deeply. 🦛

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_root_secret-0.2.1.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_root_secret-0.2.1-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file django_root_secret-0.2.1.tar.gz.

File metadata

  • Download URL: django_root_secret-0.2.1.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for django_root_secret-0.2.1.tar.gz
Algorithm Hash digest
SHA256 01ee308bf04b03f1f48d799abb010ef4c1b64caa14d2693f6f63e2a74673d3e1
MD5 3c2d54192e32b75a926bcbe6bcf01aa3
BLAKE2b-256 b947526c23df72edc0b6a28ad28deded1f50e8cd2d15b6705fc02ac43a7bd6ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_root_secret-0.2.1.tar.gz:

Publisher: publish.yml on efe/django-root-secret

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_root_secret-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_root_secret-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 35955731557d017fa6aaa82807ae2e1875436584c667b8a8223683cedde72490
MD5 281cbb74df24e930d15467813afbe9b4
BLAKE2b-256 6fa700c37126e40d28b0781d26f1499c80bb035d7fe179d868435aea978fe6c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_root_secret-0.2.1-py3-none-any.whl:

Publisher: publish.yml on efe/django-root-secret

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page