mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-05 09:24:12 +01:00
26f289b72b
ansible-lint 6.5.0 complains about: name: All names should start with an uppercase letter. (name[casing])
19 lines
623 B
YAML
19 lines
623 B
YAML
- name: Setup public dashboards server
|
|
hosts: dashboards.archlinux.org
|
|
remote_user: root
|
|
roles:
|
|
- { role: firewalld }
|
|
- { role: wireguard }
|
|
- { role: common }
|
|
- { role: sshd }
|
|
- { role: root_ssh }
|
|
- { role: hardening }
|
|
- { role: borg_client, tags: ["borg"], when: "'borg_clients' in group_names" }
|
|
- { role: prometheus, prometheus_receive_only: true }
|
|
- { role: prometheus_exporters }
|
|
- { role: promtail }
|
|
- { role: certbot }
|
|
- { role: nginx }
|
|
- { role: grafana, grafana_anonymous_access: true, grafana_domain: 'dashboards.archlinux.org' }
|
|
- { role: fail2ban }
|