Skip to content

holden.vars.yml

Optional file alongside holden.yml that stores configuration values and encrypted secrets.

values:
# Plain values
LOG_LEVEL: debug
CONTACT_EMAIL: [email protected]
# Encrypted secrets
API_KEY:
secure: YWdlLWVuY3J5cHRpb24ub3Jn...

All variables live under values:. Plain values are stored as-is. Encrypted values use the secure: wrapper containing base64-encoded age ciphertext.

Place next to holden.yml:

  • Directorymy-app/
    • holden.yml
    • holden.vars.yml

See Variables for syntax, CLI commands, and usage.