Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article explains how to add environment variables to a deployment project in Bamboo Server using the Command Line Interface app.

Instructions

For this task, use the CLI action addEnvironmentVariables with deploymentProject and environment as required parameters.

  • addEnvironmentVariablesAdd deployment environment variables. Use the field parameters for the variable name and the corresponding value parameters for the variable values.
  1. Log in as a Bamboo administrator.
  2. Ensure you have the Deployment project with Environment defined, t. To view all the deployment projects in the Bamboo instance, navigate to Deploy > All deployment projects.


  3. Click on Environment (Environment 2 as per the example) → Edit environment.


  4. The below screenshot represents shows no variables defined.


  5. To add the environment variables, execute the below command:

    Code Block
    themeMidnight
    --action addEnvironmentVariables --deploymentProject DeployProject2 --environment Environment2 --field Inputfield1=InputValue1 --replace


  6. Below is the output on Terminal:

    Code Block
    themeMidnight
    titleOutput on terminal
    --action addEnvironmentVariables --deploymentProject DeployProject2 --environment Environment2 --field Inputfield1=InputValue1 --replace
    
    Variable 'Inputfield1' added.
    1 variables updated or added to environment.


  7. Below is the output on Bamboo to see verify if variables are added:

Info
  • It is recommended to test the commands in a non-production environment , or, or run the action with --simulate parameter to verify the behaviour before behavior before deploying.
  • Ensure you have Bamboo Command Line Interface app installed in your Bamboo instance.

...