debugging nested list

Hello Folks,

I have a debugging question that has left me scratching my head. I have a vars file with the following vars (using ansible 2.3.2.0):

packages1:

one:

version: “one-ish”

two:

version: “two-ish”

Your ‘packages1’ is a dictionary/hash not a list/array, so if you want to iterate over it you have to use with_dict.

kind regards
Pshem