16 lines
350 B
YAML
16 lines
350 B
YAML
|
---
|
||
|
- hosts: "{{ host }}"
|
||
|
vars:
|
||
|
|
||
|
tasks:
|
||
|
|
||
|
- name: Create a ssh user in the system
|
||
|
user:
|
||
|
name: "{{ ssh_user_name }}"
|
||
|
#password: "{{ item.password }}"
|
||
|
password: "{{ ssh_password | password_hash('sha512') }}"
|
||
|
update_password: always
|
||
|
state: present
|
||
|
groups: sudo
|
||
|
shell: /bin/bash
|
||
|
comment: ssh user
|