Hi Eric

Brilliant! Thank you very much! - That put me down the right path.

Once I understood your syntax, I managed to get all of these to work:

- name: debug 0
  debug:
    var: test123


- name: debug 1
  debug:
    var: test123[0].namespace_path

- name: debug 2
  debug:
    msg: The value is "{{ test123[0].namespace_path }}"

- name: debug 3
  debug:
    var:  item['namespace_path']
  with_items: "{{ test123 }}"

- name: debug 4
  debug:
    msg: The value is "{{ item['name'] }}"
  with_items: "{{ test123 }}"


Once again, your assistance has been very much appreciated!

Regards
Jinal

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/ce2363b8-0043-4e92-873f-027589d359af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to