diff --git a/pipelines/bootstrap/Jenkinsfile.rotatekey b/pipelines/bootstrap/Jenkinsfile.rotatekey index f6ced312d3..db3deb07a9 100644 --- a/pipelines/bootstrap/Jenkinsfile.rotatekey +++ b/pipelines/bootstrap/Jenkinsfile.rotatekey @@ -20,7 +20,7 @@ node() { jobName = sh(returnStdout: true, script: "echo $JOB_NAME").split('/')[-1].trim() currentWs = sh(returnStdout: true, script: 'pwd').trim() ansiblePlaybook = "${currentWs}/ansible/rotatekeys.yml" - ansibleExtraArgs = " --extra-vars bootstrap_user_public_key=\"${params.bootstrap_user_public_key}\" bootstrap_user=\"${params.bootstrap_user}\" ssh_user=\"${params.ssh_user}\" ssh_private_file=\"${params.ssh_private_file}\" ssh_public_key=\"${params.ssh_public_key}\"" + ansibleExtraArgs = " --extra-vars bootstrap_user_public_key=\"${params.bootstrap_user_public_key}\" --extra-vars bootstrap_user=\"${params.bootstrap_user}\" --extra-vars ssh_user=\"${params.ssh_user}\" --extra-vars ssh_private_file=\"${params.ssh_private_file}\" --extra-vars ssh_public_key=\"${params.ssh_public_key}\"" values.put('currentWs', currentWs) values.put('env', envDir) values.put('module', module)