Tomishinets Vladimir 5 years ago
parent
commit
0ac20f2e18
1 changed files with 4 additions and 4 deletions
  1. 4 4
      OFFICERenewalWildcardJenkinsfile

+ 4 - 4
OFFICERenewalWildcardJenkinsfile

@@ -143,11 +143,11 @@ def update_sertificate(String PLAYBOOK, String TARGET_DIR, String TARGET_HOST) {
       withCredentials([sshUserPrivateKey(credentialsId: 'ansible', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
         ansiColor('xterm') {
           ansiblePlaybook(
-            credentialsId: '${GIT_SSH_KEY}',
-            playbook: '${PLAYBOOK}',
+            credentialsId: ${GIT_SSH_KEY},
+            playbook: ${PLAYBOOK},
             extraVars: [
-              target_dir: '${TARGET_DIR}',
-              target_host: '${TARGET_HOST}'
+              target_dir: ${TARGET_DIR},
+              target_host: ${TARGET_HOST}
             ],
             colorized: true)
         }