mirror of
https://github.com/koodiklinikka/playbooks.git
synced 2026-01-26 03:03:59 +00:00
18 lines
361 B
YAML
18 lines
361 B
YAML
---
|
|
- name: create admin group
|
|
group: name=admin state=present
|
|
|
|
- name: create users
|
|
user: >
|
|
name={{ item.name }}
|
|
groups=admin,docker
|
|
shell=/bin/bash
|
|
password={{ item.password }}
|
|
with_items: users
|
|
|
|
- name: set authorized keys
|
|
authorized_key: >
|
|
user='{{ item.name }}'
|
|
key='{{lookup('file', item.public_key)}}'
|
|
with_items: users
|