Hello,
my csv file has the "," delimiter and is this way:
buddy,dv19,toto
eric,dv05,toto
buddy,dv05,toto
I can easily use the lookup command on a single key like buddy or eric or dv19 or dv05.
How could I proceed to select on a multiple key like "buddy,dv19" ?
I tried to set a variable to buddy,dv1ç and use it this way, it cannot be found:
....
doublekey: buddy,dv19
....
- debug: msg="the value of doublekey is {{ lookup('csvfile', '{} file=/home/fanvalt/parameter_playbook/param.csv delimiter=, col=0'.format(doublekey)) }}"
any clue ?
Regards