17 lines
486 B
YAML
17 lines
486 B
YAML
- hosts: all
|
|
become : yes
|
|
tasks:
|
|
- name: create the 'ubuntu' user
|
|
user: name=ubuntu append=yes state=present createhome=yes shell=/bin/bash
|
|
|
|
- name: allow 'ubuntu' to have passwordless sudo
|
|
lineinfile:
|
|
dest: /etc/sudoers
|
|
line: 'ubuntu ALL=(ALL) NOPASSWD: ALL'
|
|
validate: 'visudo -cf %s'
|
|
|
|
- name: set up authorised keys for the 'ubuntu' user
|
|
authorized_key: user=ubuntu key="{{item}}"
|
|
with_file:
|
|
- ~/.ssh/id_rsa.pub
|