Ansible_workstation/tasks/users.yml

9 lines
139 B
YAML
Raw Normal View History

2018-08-22 18:42:52 +00:00
---
2018-08-22 19:14:04 +00:00
- name: Add users
user:
name: "{{ username }}"
password: "{{ password }}"
shell: /bin/zsh
with_items: "{{ users }}"
2018-08-22 18:42:52 +00:00