- name: Clone from git repo
git:
repo: "{{ item.repo_url }}"
dest: "{{ item.destination }}"
version: "{{ item.version }}"
force: yes
no_log: true
with_items:
- { repo_url: "https://{{ deploy_user }}:{{ deploy_token }}@gitlab.xx.git",destination: "/data/wcs9", version: "{{ git_branch }}" }
Have tried commenting out the no_log_true and also true to false.
Still my playbook is failing. Any idea please.
Ansible Version is 2.9.10