├── .gitignore ├── README.md ├── ansible-create-users.jpg ├── create_users.yml ├── hosts ├── pub_keys ├── jaroslav.pub └── maruna.pub └── users.yml /.gitignore: -------------------------------------------------------------------------------- 1 | *.[jJ][pP][gG] 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msergiy87/ansible-create-users/HEAD/README.md -------------------------------------------------------------------------------- /ansible-create-users.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msergiy87/ansible-create-users/HEAD/ansible-create-users.jpg -------------------------------------------------------------------------------- /create_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msergiy87/ansible-create-users/HEAD/create_users.yml -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- 1 | [servers] 2 | 172.16.22.100 3 | -------------------------------------------------------------------------------- /pub_keys/jaroslav.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msergiy87/ansible-create-users/HEAD/pub_keys/jaroslav.pub -------------------------------------------------------------------------------- /pub_keys/maruna.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msergiy87/ansible-create-users/HEAD/pub_keys/maruna.pub -------------------------------------------------------------------------------- /users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msergiy87/ansible-create-users/HEAD/users.yml --------------------------------------------------------------------------------