| 12345678910111213141516171819202122 |
- ---
- - hosts: 10.0.0.2
- gather_facts: true
- become: true
- vars_files:
- - "{{ playbook_dir }}/../vars/vault.yaml"
- vars:
- router_ingress_interface: enp3s0
- router_egress_interface: nordtun
- dns_primary: 1.1.1.1
- dns_secondary: 1.0.0.1
- status_services:
- - isc-dhcp-server
- - nordvpnd
- - unbound
- roles:
- - role: router
- - role: statusservices
|