0.1.4
Release Notes
Release 0.1.4 introduces a new feature for the envie set command that makes it easy to clone environment variables between environments.
You can now use the --from flag to copy values from one environment to another without having to manually decrypt, copy, and re-encrypt values.
Clone a variable with the same name:
envie set org:proj:production API_KEY --from org:proj:stagingClone and rename (remap) in one step:
envie set org:proj:dev REDIS_URL=REDIS_ADDRESS--from org:proj:productionClone multiple variables at once:
envie set org:proj:production API_KEY DB_URL REDIS_HOST --from org:proj:stagingMix cloning and remapping:
envie set org:proj:dev PUBLIC_API=INTERNAL_API SECRET_KEY DB_PASSWORD --from org:proj:stagingNote: You must have read access to the source environment and write access to the target environment. The --from flag is only for cloning values; to set literal values, use the standard KEY=value syntax without --from.