above groovy present in our Jenkins Library. I am calling that like below in pipeline script.
@Library(['XX','XX']) _
pipeline {
agent any
stages {
stage('Hello') {
steps {
awsebDeployment releaseNo: '4.11.0',
versionNumber: '0001',
credentialsId: 'aws-poc-user',
awsRegion: 'XX-east-X',
applicationName: 'XXX-deploy-poc',
environment: 'XXXdeploypoc-dev'
}
}
}
}
but its throwing credentials not found error even credentials is present in jenkins.
Credentials are configured as username and password not with access key and access id.
Does this plugin work with username and password.
def call(config=[:]) {
}
above groovy present in our Jenkins Library. I am calling that like below in pipeline script.
@Library(['XX','XX']) _ pipeline { agent any
stages { stage('Hello') { steps { awsebDeployment releaseNo: '4.11.0', versionNumber: '0001', credentialsId: 'aws-poc-user', awsRegion: 'XX-east-X', applicationName: 'XXX-deploy-poc', environment: 'XXXdeploypoc-dev' } } } } but its throwing credentials not found error even credentials is present in jenkins. Credentials are configured as username and password not with access key and access id. Does this plugin work with username and password.