Last active
June 19, 2024 08:50
-
-
Save akostadinov/d4d695d11b0215c7acc8af5fe82a25bd to your computer and use it in GitHub Desktop.
jenkins credentials obtain on script console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
com.cloudbees.plugins.credentials.SystemCredentialsProvider.getInstance().getCredentials().forEach{ | |
it.properties.each { prop, val -> | |
if (prop == "secretBytes") { | |
println(prop + "=>\n" + new String(com.cloudbees.plugins.credentials.SecretBytes.fromString("${val}").getPlainData()) + "\n") | |
} else { | |
println(prop + ' = "' + val + '"') | |
} | |
} | |
println("-----------------------") | |
} | |
// Idea taken from https://devops.stackexchange.com/a/8692/19764 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment