| Hi, we are attempting to use the Azure Credentials Plugin but are struggling to find some documentation on how to call the Managed Service Identity plugin. We have used the ServicePrincipal plugin successfully in the past and are now looking at using MSI.
// Some comments here
pipeline {
agent any
stages {
stage('Login') {
steps {
withCredentials([AzureMsiCredentials('AzureManagedServiceID')]) {
sh ''
}
}
}
}
}
Above is a snippet of how we are trying to use the plugin. Are you able to advise if this is correct? From what we are seeing it doesnt appear if anything is exposed for Managed Service Identity. |