Refactor default wireguard setup
- Replaced set_fact based setup with lookup plugin - Replaced inline definition of credentials with alternative systemd file directives
This commit is contained in:
parent
02ed21405f
commit
a777228013
4 changed files with 19 additions and 35 deletions
|
|
@ -7,12 +7,12 @@ Description=WireGuard tunnel wg0
|
|||
|
||||
[WireGuard]
|
||||
ListenPort={{ vpn_port }}
|
||||
PrivateKey={{ vpn_server_key }}
|
||||
PrivateKeyFile={{ vpn_server_key_path }}
|
||||
|
||||
{% for peer, properties in vpn_peers.items() %}
|
||||
[WireGuardPeer]
|
||||
PublicKey={{ properties.public_key }}
|
||||
PresharedKey={{ properties.preshared_key }}
|
||||
PresharedKeyFile={{ properties.preshared_key_path }}
|
||||
AllowedIPs={{ properties.ip }}/32
|
||||
{% if not loop.last %}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue