Created
          August 26, 2019 08:38 
        
      - 
      
- 
        Save cccaternberg/7f3067d6e70002fab2247135e081169c to your computer and use it in GitHub Desktop. 
    Groovy-printallcredentials
  
        
  
    
      This file contains hidden or 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.CredentialsProvider | |
| import com.cloudbees.plugins.credentials.Credentials | |
| import com.cloudbees.plugins.credentials.domains.Domain | |
| import jenkins.model.Jenkins | |
| def indent = { String text, int indentationCount -> | |
| def replacement = "\t" * indentationCount | |
| text.replaceAll("(?m)^", replacement) | |
| } | |
| Jenkins.get().allItems().collectMany{ CredentialsProvider.lookupStores(it).toList()}.unique().forEach { store -> | |
| Map<Domain, List<Credentials>> domainCreds = [:] | |
| store.domains.each { domainCreds.put(it, store.getCredentials(it))} | |
| if (domainCreds.collectMany{ it.value}.empty) { | |
| return | |
| } | |
| def shortenedClassName = store.getClass().name.substring(store.getClass().name.lastIndexOf(".") + 1) | |
| println "Credentials for store context: ${store.contextDisplayName}, of type $shortenedClassName" | |
| domainCreds.forEach { domain , creds -> | |
| println indent("Domain: ${domain.name}", 1) | |
| creds.each { cred -> | |
| cred.properties.each { prop, val -> | |
| println indent("$prop = \"$val\"", 2) | |
| } | |
| println indent("-----------------------", 2) | |
| } | |
| } | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(
com.cloudbees.plugins.credentials.Credentials.class
)
for (c in creds) {
println(c.id)
if (c.properties.description) {
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.secretBytes) {
println(" secretBytes: ")
println("\n" + new String(c.secretBytes.getPlainData()))
println("")
}
if (c.properties.privateKeySource) {
println(" privateKey: " + c.getPrivateKey())
}
if (c.properties.apiToken) {
println(" apiToken: " + c.apiToken)
}
if (c.properties.token) {
println(" token: " + c.token)
}
if (c.properties.subscriptionId) {
println(" subscriptionId: " + c.subscriptionId)
}
if (c.properties.clientId) {
println(" clientId: " + c.clientId)
}
if (c.properties.tenant) {
println(" tenant: " + c.tenant)
}
if (c.properties.clientSecret) {
println(" clientSecret: " + c.clientSecret)
}
if (c.properties.plainClientSecret) {
println(" plainClientSecret: " + c.plainClientSecret)
}
println("")}