How would I go about printing the values from three lists, so that each line contains elements from each list? For instance, I can print the values from the lists using:
msg:
- "Memory: {{ memoryLocator.stdout_lines }}"
- "Memory: {{ memoryPN.stdout_lines }}"
- "Memory: {{ memorySN.stdout_lines }}"
This would print the values like:
DIMM1
DIMM2
DIMM3
G55555-111
G55555-111
G55555-111
999000123
999000440
999000554
However, what I would like to do is print the lists so each line of the output would combine
DIMM1 G55555-111 999000123
DIMM1 G55555-111 999000440
DIMM1 G55555-111 999000554
DIMM1 G55555-111 999000123
DIMM2 G55555-111 999000440
DIMM3 G55555-111 999000554
- "{{ memoryLocator.stdout_lines }}"
- "{{ memoryPN.stdout_lines }}"
- "{{ memorySN.stdout_lines }}"