You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
482 B
23 lines
482 B
5 years ago
|
- hosts: linux
|
||
|
become: yes
|
||
|
tasks:
|
||
|
|
||
|
- name: create user
|
||
|
user:
|
||
|
name: alpha
|
||
|
password: "{{ password | password_hash('sha512') }}"
|
||
|
shell: /bin/bash
|
||
|
|
||
|
- name: give user sudo access
|
||
|
lineinfile:
|
||
|
path: /etc/sudoers.d/alpha
|
||
|
line: "alpha ALL=(ALL) NOPASSWD: ALL"
|
||
|
create: yes
|
||
|
validate: visudo -cf %s
|
||
|
|
||
|
- name: add ssh keys
|
||
|
authorized_key:
|
||
|
user: alpha
|
||
|
key: https://github.com/kejadlen.keys
|
||
|
|