vdot-0.2.1 has been yanked.
vdot
Create your .env files using Vault.
🚧 Currently only works with Vault's key/value secrets engine version 1.
Usage
vdot
Create your .env files using Vault.
Usage:
vdot <path>...
vdot (-h | --help)
vdot --version
Options:
-h --help Show this message.
--version Show the version of this program.
$ vault login
$ vault write secret/foo-bar ENV=production
$ vault write secret/fizz-buzz LOG_LEVEL=info
$ vdot secret/foo-bar secret/fizz-buzz
Saved 2 environment variables to .env
$ cat .env
ENV=production
LOG_LEVEL=info