File tree Expand file tree Collapse file tree 3 files changed +26
-17
lines changed Expand file tree Collapse file tree 3 files changed +26
-17
lines changed Original file line number Diff line number Diff line change 9
9
- vars.yml
10
10
11
11
roles :
12
- - auto-update
12
+ # - auto-update
13
13
- base
14
- - aws
15
- - brave
16
- - chrome
17
- # - docker-cli-only
18
- - docker-desktop-dependency
19
- - gh_cli
20
- - hashicorp
21
- - keepassxc
22
- - kubectl
23
- - microsoft
24
- - opera
25
- - signal-desktop
26
- - sublime-text
27
- - trivy
28
- - ufw
14
+ # - aws
15
+ # - brave
16
+ # - chrome
17
+ # # - docker-cli-only
18
+ # - docker-desktop-dependency
19
+ # - gh_cli
20
+ # - hashicorp
21
+ # - keepassxc
22
+ # - kubectl
23
+ # - microsoft
24
+ # - opera
25
+ # - signal-desktop
26
+ # - sublime-text
27
+ # - trivy
29
28
- role : vim
30
29
become : false
31
30
- role : env
32
31
become : false
33
- - disable-local-dns
32
+ # - disable-local-dns
34
33
# - yubico
Original file line number Diff line number Diff line change 25
25
26
26
- name : autostart tasks
27
27
import_tasks : autostart.yml
28
+
29
+ - name : configure ufw
30
+ import_tasks : ufw.yml
Original file line number Diff line number Diff line change
1
+ ---
2
+ - name : Limit inbound SSH traffic on port 22 for 192.168.0.0/16 network
3
+ ansible.builtin.ufw :
4
+ rule : limit
5
+ port : 22
6
+ proto : tcp
7
+ from_ip : 192.168.0.0/16
You can’t perform that action at this time.
0 commit comments