You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
i want the consolidated list of all the variables set in different build plans and their deployment environments. is there any way to get such list?
You can get all the variables for a specific build plan using the REST API:
All plans can also be retrieved via this API and which you can then iterate over and perform the above call:
This doesn't help for Deployment Environments or Global Variables though as there's no public API for this.
If you have access to your Bamboo database, it's probably easier to just use these SQL queries instead:
--- Global Variables
SELECT variable_key, variable_value, variable_type
FROM VARIABLE_DEFINITION WHERE VARIABLE_TYPE = 'GLOBAL'
--- Plan Variables
SELECT variable_key, variable_value, variable_type, full_key as PlanKey
FROM VARIABLE_DEFINITION VD
JOIN BUILD B ON VD.PLAN_ID = B.BUILD_ID
WHERE VARIABLE_TYPE = 'PLAN'
--- Deployment Environment Variables
SELECT variable_key, variable_value, variable_type, DP.name as DeploymentProject, DE.name as DeploymentEnvironment, plan_key as SourceBuildPlan
FROM VARIABLE_DEFINITION VD
JOIN DEPLOYMENT_ENVIRONMENT DE ON VD.ENVIRONMENT_ID = DE.ENVIRONMENT_ID
JOIN DEPLOYMENT_PROJECT DP ON DE.PACKAGE_DEFINITION_ID = DP.DEPLOYMENT_PROJECT_ID
WHERE VARIABLE_TYPE = 'ENVIRONMENT'
Note that any variable with "password" or "secret" in the key will be encrypted and unreadable in the data.
Hope this helps. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.