To put Daniel's response into clear example:

  - name: Create groups
      group:
        name: "{{ item }}"
        state: present
      with_items: "{{groups}}"
      ignore_errors: yes

    - name: Create users
      user:
        name: "{{ item }}"
        state: present
      with_items: "{{users}}"

----------
Brian Coca

-- 
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 ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CACVha7esQWqV4hAmL-2y%3DJN%3DYJECN6FAbMJm3sOWHbNA4W7zBg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to