-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaybook.yml
70 lines (60 loc) · 1.47 KB
/
playbook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
- hosts: all
become: true
vars:
username:
packages:
- atop
- screen
tasks:
- name: Setup passwordless sudo
lineinfile:
path: /etc/sudoers
state: present
regexp: '^%sudo'
line: '%sudo ALL=(ALL) NOPASSWD: ALL'
validate: '/usr/sbin/visudo -cf %s'
- name: Create user with sudo
user:
name: "{{ username }}"
state: present
groups: sudo
append: true
create_home: true
- name: Set authorised key for user
ansible.posix.authorized_key:
user: "{{ username }}"
state: present
key: "{{ lookup('file', '~/.ssh/id_ed25519.pub') }}"
- name: Disable root auth
lineinfile:
path: /etc/ssh/sshd_config
state: present
regexp: '^~?PermitRootLogin'
line: 'PermitRootLogin no'
validate: sshd -t -f %s
- name: Disable Password Authentication
lineinfile:
path: /etc/ssh/sshd_config
state: present
regexp: '^PasswordAuthentication'
line: 'PasswordAuthentication no'
- name: Update and upgrade packages
apt:
update_cache: yes
upgrade: yes
- name: Install packages
apt:
name: "{{ packages }}"
state: latest
update_cache: yes
- name: Allow SSH connections through firewall
ufw:
rule: allow
name: OpenSSH
- name: Enable firewall and deny by default
ufw:
state: enabled
default: deny
- name: Set hostname
hostname:
name: "{{ inventory_hostname }}"