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.
Hello,
The password I enter in the task is displayed in plain text when I view "Bamboo plan as java spec" or yaml spec.
How do I display ***** in place of password when viewing the spec?
Thanks
What's the task plugin?
Please contact support if plugin is provided by Atlassian or plugin vendor otherwise.
There's nothing you can do to avoid such situation as a user.
We wrote the plugin. the password field is created as
[@ww.password labelKey="password" name="xxx" required="true" showPassword="true" /]
When configuring the plan the password is masked and displayed
But when I click view plan spec it is displayed in plain text. How do I display ***** instead of plain text?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I see.
You need to change plugin code to use com.atlassian.bamboo.crypto.instance.SecretEncryptionService to encrypt user input before keep it to task configuration.
Then you need to use RuntimeTaskDefinition to provide this value to agent when job is sent for execution.
As reference look at code of Bamboo SCP/SSH plugin, see BaseSshTaskConfigurator.java how to keep config at encrypted state and BaseSshTaskRuntimeDataProvider.java to see how to provide RuntimeTaskData
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.