Created
October 1, 2024 06:49
-
-
Save kibotu/cfeb21558b7c1008218b4b7b797e3007 to your computer and use it in GitHub Desktop.
Jenkins print credential store in 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
import com.cloudbees.plugins.credentials.Credentials | |
Set<Credentials> allCredentials = new HashSet<Credentials>(); | |
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials( | |
com.cloudbees.plugins.credentials.Credentials.class | |
); | |
allCredentials.addAll(creds) | |
Jenkins.instance.getAllItems(com.cloudbees.hudson.plugins.folder.Folder.class).each{ f -> | |
creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials( | |
com.cloudbees.plugins.credentials.Credentials.class, f) | |
allCredentials.addAll(creds) | |
} | |
for (c in allCredentials) { | |
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