
JBurroughs818155 (Community Member) asked a question.
I am configuring Jenkins to run the Veracode plugin. The plug-in is using an ID/KEY rather than ID/PW. My groovy script looks like this:
stage('Veracode Scan') {
steps
{ veracode applicationName: 'Test App',
criticality: 'Very High',
fileNamePattern: '**/**.jar',
replacementPattern: '',
sandboxName: 'DEV Sandbox',
scanExcludesPattern: '',
scanIncludesPattern: '',
scanName: '$buildnumber',
teams: '',
uploadExcludesPattern: '',
uploadIncludesPattern: '**/**.jar',
vid: '',
vkey: '',
vpassword: '',
vuser: ''
}
}
How do I get to refer to the ID/KEY that I have already configured in Jenkins under Veracode User Credentials?
.png)
Hi @JBurroughs818155 (Community Member) , thank you for your question - I will share your question with the @Integrations Group for visibility.
Please refer to the Configure Jenkins Credentials to Use with Pipeline Job for Veracode Scans article in the Help Center , https://help.veracode.com/r/t_jenkins_pipe .
Essentially, we recommend binding the API ID and Key with the Jenkins withCredentials plugin.
@Ilan S., Veracode Support (Veracode) Thanks. But which ID and Key to use? Not my personal one, right? Are there ID/Key pairs for apps?