Environment Variables
Environment variables allow you to configure your worker’s runtime behavior without modifying code. This guide explains how to manage environment variables for your Hatchet workers.
Overview
Environment variables in Hatchet Compute:
- Are securely stored and encrypted at rest
- Can be modified without rebuilding your container
- Support different values across environments
- Are injected into your worker containers at runtime
Configuring Environment Variables
You can configure environment variables through:
- The Hatchet UI during service creation/configuration
- Infrastructure as Code using the Hatchet CLI
- Service configuration files
Using the UI
- Navigate to your service’s “Runtime configuration” section
- Find the “Environment Variables” panel
- Click “Add row” to create a new variable
- Enter the key and value:
- Key: The environment variable name (e.g.,
DATABASE_URL
) - Value: The environment variable value (e.g.,
postgresql://<password>@<host>:<port>/<database>
)
- Key: The environment variable name (e.g.,
- Click “Save” to apply the changes and trigger a redeployment of your service
Best Practices
-
Security
- Never commit sensitive values to version control
- Use Hatchet’s secrets management for sensitive data
- Rotate sensitive values regularly
-
Naming Conventions
- Use descriptive, meaningful names
- Follow a consistent naming pattern
- Document non-obvious variables
-
Value Management
- Use appropriate data types
- Validate values before deployment
- Keep values consistent across related services
-
Common Variables
# Examples of commonly used variables NODE_ENV=production LOG_LEVEL=info API_TIMEOUT=30000 DATABASE_URL=postgresql://user:pass@host:5432/db
HATCHET_CLIENT_TOKEN
is automatically set for your service and should not be
set in your environment variables.
Accessing Variables in Code
Environment variables are mounted into your worker containers at runtime. You can access them in your code using standard methods for your language.
import os
database_url = os.getenv('DATABASE_URL')
api_key = os.getenv('API_KEY')
Troubleshooting
-
Variables Not Available
- Verify the variable is correctly set in your configuration
- Check for typos in variable names
- Ensure the service has been redeployed after changes
-
Incorrect Values
- Check for proper escaping of special characters
- Verify the value format is correct
- Look for conflicting definitions
-
Security Issues
- Review access permissions to sensitive variables
- Ensure secrets are properly managed
- Check for accidental exposure in logs
For additional help, join the Hatchet Community or reach out to us here.