Skip to content

Instantly share code, notes, and snippets.

@tstrul1
Created September 30, 2020 15:38
Show Gist options
  • Save tstrul1/123f0d781ae45152c78717741208b4a1 to your computer and use it in GitHub Desktop.
Save tstrul1/123f0d781ae45152c78717741208b4a1 to your computer and use it in GitHub Desktop.
print jenkins secrets
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(
com.cloudbees.plugins.credentials.Credentials.class
)
for (c in creds) {
println(c.id)
if (c.properties.username) {
println(" description: " + c.description)
}
if (c.properties.username) {
println(" username: " + c.username)
}
if (c.properties.password) {
println(" password: " + c.password)
}
if (c.properties.passphrase) {
println(" passphrase: " + c.passphrase)
}
if (c.properties.secret) {
println(" secret: " + c.secret)
}
if (c.properties.privateKeySource) {
println(" privateKey: " + c.getPrivateKey())
}
println("")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment