Re: [ansible-project] When using group_vars : ValueError: dictionary update sequence element #0 has length 1; 2 is required

2017-04-20 Thread Brian Coca
vars files require that the top level is a dictionary, not a list: ``` crons: - { daily-min: "15", daily-hr: "01" } - { weekly-min: "15", weekly-hr: "03" } ``` -- Brian Coca -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To

[ansible-project] When using group_vars : ValueError: dictionary update sequence element #0 has length 1; 2 is required

2017-04-20 Thread Sean McConkey
Hi, I am introducing group_vars & children in my inventory into my Ansible environment as I need to update cron-tabs for different geographical regions using templates the basics of what you can see below. When I run the playbook it produces the error as seen at the bottom. A bit of research t