blob: 66334806b422b408ff6a9ba6584397a432977edd (
plain) (
tree)
|
|
# network ~~ playbooks/network.yml
# common network configuration
---
- hosts: localhost
gather_facts: no
roles:
- { role: sshdns }
- hosts: all
gather_facts: no
roles:
- { role: wireguard }
- hosts: servers
roles:
- { role: dns }
- { role: sshd }
- { role: prometheus }
- hosts: dc0
roles:
- { role: pf }
- { role: relayd }
|