Skip to content

Instantly share code, notes, and snippets.

@akostadinov
Last active June 19, 2024 08:50
Show Gist options
  • Save akostadinov/d4d695d11b0215c7acc8af5fe82a25bd to your computer and use it in GitHub Desktop.
Save akostadinov/d4d695d11b0215c7acc8af5fe82a25bd to your computer and use it in GitHub Desktop.
jenkins credentials obtain on script console
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