19 lines
521 B
YAML
19 lines
521 B
YAML
---
|
|
- name: Ensure mandatory variables are configured
|
|
assert:
|
|
that: "{{ item }} is defined"
|
|
fail_msg: "You must define the '{{ item }}' variable"
|
|
with_items:
|
|
- members
|
|
|
|
- name: Include resource variables
|
|
include_vars: "{{ members }}"
|
|
tags:
|
|
# Note(d1): we already load in converge.yml so skip here
|
|
- molecule-notest
|
|
|
|
# Note(d1): Done in this way because https://stackoverflow.com/a/39041069
|
|
- name: Include user addition tasks
|
|
include: users.yml user={{ item }}
|
|
with_items: "{{ members }}"
|