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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have also added my comment to provide this feature.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How did you find the variableId ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.