/
/
/
1# WireGuard Environment Configuration
2# {{ ansible_managed }}
3# SECURITY: Protect this file - contains sensitive credentials
4
5# Core WireGuard Settings
6WG_HOST={{ wireguard_host }}
7WG_PORT={{ wireguard_port }}
8PASSWORD={{ wireguard_password }}
9
10# Network Configuration
11WG_DEFAULT_ADDRESS={{ wireguard_subnet }}
12WG_DEFAULT_DNS={{ wireguard_dns }}
13WG_ALLOWED_IPS={{ wireguard_default_allowed_ips }}
14WG_PERSISTENT_KEEPALIVE={{ wireguard_default_persistent_keepalive }}
15
16# Client Management
17WG_MAX_CLIENTS={{ wireguard_max_clients }}
18
19# Interface Configuration
20WG_DEVICE={{ wireguard_device_name }}