Updating environments
NOTE: only users that have been given the write permission to the environment can update it. Read about Access control to learn more.
You can set the value of a variable in your environment with the following command:
envie set <organization>:<project>:<environment-name> KEY=value
# or
envie set <organization>:<project>:<environment-name> KEY value
You can also copy an existing value from another environment by providing the other environment's path as the second argument:
envie set <organization>:<project>:<environment-name> KEY org:project:other-env
To remove an environment variable, run:
envie unset <org>:<project>:<env-name> KEY
Every time you update an environment a new version of the environment is created so that version history is preserved.