From f047d45e7d9b7fe4bd55ad62a616e31f0d6bdb5b Mon Sep 17 00:00:00 2001 From: Alexandre Chaussier Date: Thu, 5 May 2016 12:45:33 +0200 Subject: [PATCH] Add missing args in tasks --- tasks/manage_credentials.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tasks/manage_credentials.yml b/tasks/manage_credentials.yml index 4e7441d..c8ab97d 100644 --- a/tasks/manage_credentials.yml +++ b/tasks/manage_credentials.yml @@ -50,6 +50,10 @@ description: "{{ item.description }}" password: "{{ item.password }}" state: "{{ item.state }}" + cli_path: "{{ jenkins_cli_path }}" + deployment_ssh_key: "{{ jenkins_deployment_ssh_key }}" + groovy_scripts_path: "{{ jenkins_groovy_scripts_path }}" + url: "{{ jenkins_base_url }}" no_log: True register: 'jenkins_change_password_credentials' with_items: "{{ jenkins_credentials }}" @@ -67,6 +71,10 @@ text: "{{ item.text }}" description: "{{ item.description }}" state: "{{ item.state }}" + cli_path: "{{ jenkins_cli_path }}" + deployment_ssh_key: "{{ jenkins_deployment_ssh_key }}" + groovy_scripts_path: "{{ jenkins_groovy_scripts_path }}" + url: "{{ jenkins_base_url }}" no_log: True register: 'jenkins_change_text_credentials' with_items: "{{ jenkins_credentials }}"