Running an ansible playbook with username with correct username and password gives an empty string as an output. Any idea what the issue might be?
` tasks:
- name: Run ontap cli command
netapp.ontap.na_ontap_rest_info:
hostname: "{{ hostname }}"
username: "{{ username }}"
password: "{{ password }}"
https: true
validate_certs: false
gather_subset:
- svm/svms
PLAY [Get information] **********************************************************************************************************************
TASK [Gathering Facts] **********************************************************************************************************************
ok: [localhost]
TASK [Run ontap cli command] **********************************************************************************************************************
ok: [localhost]
PLAY RECAP **********************************************************************************************************************
localhost : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 `