Currently we are using the keys stored in plain text in a private location:
new BitbucketServerRepository().sshPrivateKey(privKey).sshPublicKey(pubKey);
We would like to switch to encrypted keys with "Specs > Sensitive data encryption", so we can store the encrypted keys in an open location.
What is the correct way to achieve this?
Do I just put the encrypted versions instead of plain text, like
new BitbucketServerRepository().sshPrivateKey(encryptedPrivKey).sshPublicKey(encryptedPubKey);
and Bamboo will figure it out automatically and decrypt when it will try to access the repository? Or some other steps should be done to get it working?
I'm using Bamboo 6.10.6, if it matters.
I would also like to know how this works.
Unfortunately, the documentation on Bamboo Specs encryption is pretty bad. As well as the Bamboo Specs and Java Docs. I couldn't find anywhere how to use this.
Maybe someone from Atlassian team can show how to use this...!?
We're using Bamboo 7.2.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.