Skip to main content

A tool to manage encrypted environment variables.

Project description

EnvVault

EnvVault is a Python package for encrypting and managing .env files, similar to Rails Credentials. It allows you to securely store sensitive information (such as API keys, database passwords, etc.) and decrypt and use this information at runtime.

Features

  • Encrypt .env files: Encrypt plaintext .env files into .env.enc files.
  • Decrypt .env.enc files: Decrypt .env.enc files at runtime and load environment variables.
  • Multi-environment support: Create separate encrypted files for different environments (e.g., development, production).
  • Dynamic field support: Automatically define fields in Settings based on the contents of .env.enc.
  • Type inference: Automatically infer field types (e.g., str, int, bool) from environment variable values.
  • CLI tool: Provides a command-line interface for managing encrypted files.
  • Integration with pydantic_settings: Supports managing decrypted environment variables using pydantic_settings.

Dynamic Field Support

EnvVault dynamically creates Settings fields based on the contents of the .env.enc file. For example, if your .env.enc file contains:

API_KEY=your_api_key_here
DATABASE_URL=your_database_url_here
DEBUG=true
PORT=8080

EnvVault will automatically create the following fields in the Settings class:

  • API_KEY (string)
  • DATABASE_URL (string)
  • DEBUG (boolean)
  • PORT (integer)

Type Inference

EnvVault supports automatic type inference for environment variables. For example:

  • DEBUG=trueDEBUG is inferred as a boolean.
  • PORT=8080PORT is inferred as an integer.
  • API_KEY=your_api_key_hereAPI_KEY is inferred as a string.

Installation

Install using Poetry:

poetry add envvault

# Or install using pip:
pip install envvault

Usage

1. Initialize

Initialize the master key and an empty .env.enc file:

envvault init --env development

This will generate the following files:

  • master.key: The master key used for encryption and decryption.
  • .env.development.enc: An empty encrypted file.

2. Edit Encrypted File

Edit the .env.enc file using your default editor:

envvault edit --env development

The editor will open a temporary file. After editing, the content will be re-encrypted and saved to .env.development.enc.


3. View Decrypted Environment Variables

Decrypt and view the contents of the .env.enc file:

envvault view --env development

Enter the following content in the editor:

API_KEY=your_api_key_here
DATABASE_URL=your_database_url_here
DEBUG=true
PORT=8080

4. Use in Code

Load decrypted environment variables in your code:

from envvault.settings import Settings

# Load configuration for the development environment
settings = Settings.from_credentials(env_name="development")
print("API Key:", settings.API_KEY)
print("Database URL:", settings.DATABASE_URL)

or

from envvault.settings import get_settings

# Load configuration for the current environment
envvault = get_settings()
print("API Key:", settings.API_KEY)
print("Database URL:", settings.DATABASE_URL)

Configuration

Default Editor

You can set the default editor using the EDITOR environment variable. For example:

export EDITOR=code  # Use VS Code
export EDITOR=nano  # Use Nano
export EDITOR=vim   # Use Vim

Multi-Environment Support

EnvVault supports creating separate encrypted files for different environments. For example:

  • .env.development.enc: Development environment.
  • .env.production.enc: Production environment.

Specify the environment name using the --env parameter in CLI commands.


Contributing

Issues and Pull Requests are welcome!


License

MIT

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

envvault-0.1.4.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

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

envvault-0.1.4-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file envvault-0.1.4.tar.gz.

File metadata

  • Download URL: envvault-0.1.4.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.7 Darwin/24.0.0

File hashes

Hashes for envvault-0.1.4.tar.gz
Algorithm Hash digest
SHA256 63df97501c3920c827abb1461db5cce0bae3695ce7fe3edd7c7c0ec3c95c0cf9
MD5 50160e8788c8ccf08baf059a484bd3c9
BLAKE2b-256 527e46e9651f83cc313f754953435e4f6f47ed55d327bacf7f6e7353a9e5e7f2

See more details on using hashes here.

File details

Details for the file envvault-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: envvault-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 6.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.7 Darwin/24.0.0

File hashes

Hashes for envvault-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 71ea9bc7fc85aeecda07ab68ada44dc53251ebdc0b76f7fd834f3efdb1613e28
MD5 26541a9baa7623a94577ae6c1f4ff4d9
BLAKE2b-256 c039f965c3267f553306db589148ca0a73c8de61f50969e0d3c1a2f260a30331

See more details on using hashes here.

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