infra-ansible
ansible script to ship alpine/ssh/wireguard
git clone https://9o.is/git/infra-ansible.git
main.yml
(471B)
1 ---
2 - name: Set Basic Configurations
3 import_tasks: basic.yml
4 tags: basic
5
6 - name: Configure apk
7 import_tasks: apk.yml
8 tags: apk
9
10 - name: Create User
11 import_tasks: user.yml
12 tags: user
13
14 - name: OpenSSH
15 import_tasks: openssh.yml
16 tags: ssh
17
18 - name: Wireguard Client
19 import_tasks: wireguard_client.yml
20 tags: vpn
21
22 - name: Wireguard Server
23 import_tasks: wireguard_server.yml
24 tags: vpn
25
26 - name: Set nftables
27 import_tasks: nftables.yml
28 tags: firewall
29