Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,639,450
Community Members
 
Community Events
196
Community Groups

How do I get Deployment variables via REST API?

Edited

Hello,

I want to extract deployment environment variables via the Rest API.

The URL looks like: https://localhost;8085/bamboo/chain/admin/config/configureChainVariables.action?buildKey={build-key}

I don't see any way for getting these values in BAMBOO REST API documentation.

 

Please help!.

 

Thanks,

Sajal

 

3 answers

1 accepted

2 votes
Answer accepted
Rafael Pinto Sperafico
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Dec 28, 2018

Hi,

If you also agree, I have created a suggestion (https://jira.atlassian.com/browse/BAM-20225 - As an admin, I would like to set up Variables in Bamboo using REST API) for making Bamboo variables available through REST API.

Please, feel free to add comment(s) as well as voting and becoming a watcher, so you can receive latest updates on that request.

Thanks, Will do the same.

Like Naveen Goel likes this

I have also added my comment to provide this feature.

2 votes
rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jul 17, 2018

Hi @sajalshres,

You could run the following action:

# replace USERNAME to authenticate against Bamboo's instance
user must have EDIT permission over given plan
# replace FOO with variable key
# replace BAR with variable value
# replace http://localhost:8085 with Bamboo's Base URL
# replace PROJ-PLAN with planKey in which you want to add plan variables

curl -k -u USERNAME \
     -H 'X-Atlassian-Token: no-check' \
     -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' \
     -d 'variableKey=FOO&variableValue=BAR&bamboo.successReturnMode=json&confirm=true' \
     -X POST 'http://localhost:8085/build/admin/ajax/createPlanVariable.action?planKey=PROJ-PLAN'

For deployment variables, same thing:

# replace USERNAME to authenticate against Bamboo's instance
  user must have EDIT permission over given plan
# replace FOO with variable key
# replace BAR with variable value
# replace http://localhost:8085 with Bamboo's Base URL
# replace PROJ-PLAN with planKey in which you want to add plan variables
# replace ENVIRONMENT_ID with environment id in which you want to add plan variables

curl -k -u USERNAME \
     -H 'X-Atlassian-Token: no-check' \
     -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' \
     -d 'variableKey=FOO&variableValue=BAR&bamboo.successReturnMode=json&confirm=true' \
     -X POST 'http://localhost:8085/deploy/config/createEnvironmentVariable.action?environmentId=ENVIRONMENT_ID'

Hope the above helps somehow.

Kind regards,

Rafael

Is there a way to GET deployment environment variables using the REST API? I think that was the original question and it's still not answered.

Like # people like this

Is there a full documentation of the deplo/config API?
e.g. to UPDATE existing variable?
It seems it is done by updateEnvironmentVariable but I do not know how to use it

@rsperafico ,

As suggested by you I tried the below curl command which is NOT working

 

curl -k -u MyUserId:MYpassword \
-H 'X-Atlassian-Token: no-check' \
-H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' \
-d 'variableKey=TESTVAR&variableValue=NEWVALUE&bamboo.successReturnMode=json&confirm=true' \
-X POST 'https://myBamboohost/deploy/config/configureEnvironmentVariables.action?environmentId=123456'


 I also tried "confirm=false" option , even this is not working.

Am I missing something here?

After 2 days of struggle finally I got it to work. It worked with variableId parameter .

Here is the complete Code

curl -k -u MyUserId:MYpassword \
-H 'X-Atlassian-Token: no-check' \
-H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' \
-d 'variableKey=TESTVAR&variableValue=NEWVALUE&bamboo.successReturnMode=json&confirm=true' \
-X POST 'https://myBamboohost/deploy/config/updateEnvironmentVariable.action?environmentId=123456&variableId=XXXXX'
Like # people like this

How did you find the variableId ? 

It is September 2022. I appreciate that the answer, although indirect, but has been accepted.

Is there an update on how one can consume the REST API to get a list of variables of a deployment project?

Has that been implemented and in which Bamboo version?

yeah would be nice to have a way to get this... im trying to set deployment variables via the REST API and not finding any method to do it.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events