Install wireguard server

This commit is contained in:
Jake Howard
2019-12-08 20:16:42 +00:00
parent db941391ca
commit 730246e67f
4 changed files with 67 additions and 28 deletions

View File

@ -1,29 +1,5 @@
- name: Install Haproxy
apt:
name: haproxy
become: true
become_user: root
- name: Configure HAproxy
include: haproxy.yml
- name: Import vault
include_vars:
file: vault.yml
- name: Define context
set_fact:
upstream: 10.23.0.2
- name: Haproxy config
template:
src: files/haproxy.cfg
dest: /etc/haproxy/haproxy.cfg
validate: /usr/sbin/haproxy -c -- %s
backup: yes
become: true
become_user: root
register: haproxy_config
- name: Restart Haproxy
service:
name: haproxy
state: reloaded
when: haproxy_config.changed
- name: Configure wireguard
include: wireguard.yml