/
How to add environment variables to a deployment project using Bamboo CLI
How to add environment variables to a deployment project using Bamboo CLI
This article explains how to add environment variables to a deployment project in Bamboo server using the Bamboo Command Line Interface app.
Instructions
Use the addEnvironmentVariables CLI action with deploymentProject and environment as the required parameters.
- addEnvironmentVariables: Add deployment environment variables. Use the parameters field for the variable name and the corresponding value parameters for the variable values.
To add the environmental variables to a project:
- Log in as a Bamboo administrator. Ensure you have the deployment project with environment defined.
Navigate to Deploy > All deployment projects to view all deployment projects in the Bamboo instance.
- Select the required Environment and then Edit environment. For this example, Environment 2 > Edit environment is selected as follows:
In this example, no variables are defined as for Environment 2 as shown: Execute the following command to add the environment variables:
--action addEnvironmentVariables --deploymentProject DeployProject2 --environment Environment2 --field Inputfield1=InputValue1 --replace
The output on terminal is similar to:
Output on terminal
--action addEnvironmentVariables --deploymentProject DeployProject2 --environment Environment2 --field Inputfield1=InputValue1 --replace Variable 'Inputfield1' added. 1 variables updated or added to environment.
To verify if variables are added, the output in Bamboo is displayed similar to:
- It is recommended to test the commands in a non-production environment, or run the action with --simulate parameter to verify the behavior before deploying.
- Ensure that the Bamboo Command Line Interface app is installed in your Bamboo instance.
Related content
How to add an environment to deployment project using Bamboo CLI
How to add an environment to deployment project using Bamboo CLI
More like this
How to add environment task to a deployment project using Bamboo CLI
How to add environment task to a deployment project using Bamboo CLI
More like this
How to add Environment trigger to a deployment project using Bamboo CLI
How to add Environment trigger to a deployment project using Bamboo CLI
More like this
How to clone the environment of a deployment project using Bamboo CLI
How to clone the environment of a deployment project using Bamboo CLI
More like this
How to add a requirement to a deployment environment using Bamboo Command Line Interface (CLI)
How to add a requirement to a deployment environment using Bamboo Command Line Interface (CLI)
More like this
How to add labels to current build with Bamboo task using Run CLI Actions in Bamboo
How to add labels to current build with Bamboo task using Run CLI Actions in Bamboo
More like this