So I have this playbook .yml
- name: "{{ __tpfx }}Configure LDAP | configure harbor ldap"
become: yes
uri:
url: "{{ harbor_ldap__fqdn ~ '/api/v2.0/configurations' }}"
url_username: "{{ harbor_ldap__url_username }}"
url_password: "{{ harbor_ldap__url_password }}"
validate_certs: no
use_proxy: false
method: PUT
force_basic_auth: yes
Now I want to know where the variable "{{ harbor_ldap__url_password }}"
is stored or located (directory), how can I find this?