1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-05-22 06:26:10 +02:00
infrastructure/playbooks/matrix.archlinux.org.yml
Evangelos Foutras a9e0790f53
Remove the three dashes from all YAML documents
These are used to signal the start of the document in a stream of many
documents. As Ansible only supports one YAML document per file this is
unnecessary. About a third of our YAML documents already lacked these.
2022-06-08 14:35:45 +03:00

25 lines
654 B
YAML

- name: setup matrix
hosts: matrix.archlinux.org
remote_user: root
vars_files:
- ../misc/vaults/vault_matrix.yml
roles:
- { role: common }
- { role: firewalld }
- { role: wireguard }
- { role: sshd }
- { role: root_ssh }
- { role: borg_client, tags: ["borg"] }
- { role: certbot }
- { role: nginx }
- role: postgres
postgres_shared_buffers: 256MB
postgres_work_mem: 64MB
postgres_maintenance_work_mem: 256MB
postgres_effective_cache_size: 4GB
- { role: postfix_null }
- { role: matrix }
- { role: fail2ban }
- { role: prometheus_exporters }
- { role: promtail }