1
0
Fork 0
This repository has been archived on 2020-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-role-wireguard/tasks/main.yml

149 lines
3.4 KiB
YAML
Raw Normal View History

2018-07-16 22:26:00 +00:00
---
- name: Install required packages
package:
name: "{{item}}"
state: present
with_items:
- software-properties-common
2018-07-18 21:57:27 +00:00
- linux-headers-{{ansible_kernel}}
2018-07-16 22:26:00 +00:00
- name : Add WireGuard repository
apt_repository:
repo: "ppa:wireguard/wireguard"
state: present
update_cache: yes
- name: Install WireGuard
package:
name: "{{item}}"
state: present
with_items:
- wireguard-dkms
- wireguard-tools
- name: Enable WireGuard kernel module
modprobe:
name: wireguard
state: present
register: wireguard_module_enabled
until: wireguard_module_enabled is succeeded
retries: 10
delay: 10
failed_when: wireguard_module_enabled is failure
- name: Create WireGuard certificates directory
file:
dest: "{{wireguard_cert_directory}}"
state: directory
mode: 0700
run_once: true
delegate_to: localhost
2018-07-18 21:57:27 +00:00
- name: Set path to private key file
set_fact:
private_key_file_path: "{{wireguard_cert_directory}}/{{inventory_hostname}}.private.key"
tags:
wg-config
- name: Set path to public key file
set_fact:
public_key_file_path: "{{wireguard_cert_directory}}/{{inventory_hostname}}.public.key"
tags:
wg-config
2018-07-16 22:26:00 +00:00
- name: Register if private key already exists
local_action:
module: stat
2018-07-18 21:57:27 +00:00
path: "{{private_key_file_path}}"
register: private_key_file_stat
2018-07-16 22:26:00 +00:00
tags:
- wg-generate-keys
- name: Generate WireGuard private key
shell: "wg genkey"
register: wg_private_key_result
with_inventory_hostnames:
- vpn
2018-07-18 21:57:27 +00:00
when: private_key_file_stat.stat.exists == False
2018-07-16 22:26:00 +00:00
tags:
- wg-generate-keys
- name: Set private key fact
set_fact:
wg_private_key: "{{wg_private_key_result.results[0].stdout}}"
2018-07-18 21:57:27 +00:00
when: private_key_file_stat.stat.exists == False
2018-07-16 22:26:00 +00:00
tags:
- wg-generate-keys
- name: Generate WireGuard public key
shell: "echo '{{wg_private_key}}' | wg pubkey"
register: wg_public_key_result
2018-07-18 21:57:27 +00:00
when: private_key_file_stat.stat.exists == False
2018-07-16 22:26:00 +00:00
with_inventory_hostnames:
- vpn
tags:
- wg-generate-keys
- name: Set public key fact
set_fact:
wg_public_key: "{{wg_public_key_result.results[0].stdout}}"
2018-07-18 21:57:27 +00:00
when: private_key_file_stat.stat.exists == False
2018-07-16 22:26:00 +00:00
tags:
- wg-generate-keys
- name: Store hosts private key locally
local_action:
module: template
src: "wg-privatekey.j2"
2018-07-18 21:57:27 +00:00
dest: "{{private_key_file_path}}"
2018-07-16 22:26:00 +00:00
mode: 0600
2018-07-18 21:57:27 +00:00
when: private_key_file_stat.stat.exists == False
2018-07-16 22:26:00 +00:00
tags:
- wg-generate-keys
- name: Store hosts public key locally
local_action:
module: template
src: "wg-publickey.j2"
2018-07-18 21:57:27 +00:00
dest: "{{public_key_file_path}}"
2018-07-16 22:26:00 +00:00
mode: 0600
2018-07-18 21:57:27 +00:00
when: private_key_file_stat.stat.exists == False
2018-07-16 22:26:00 +00:00
tags:
- wg-generate-keys
2018-07-18 21:57:27 +00:00
- name: Read private key from local filesystem
set_fact:
private_key: "{{lookup('file', private_key_file_path)}}"
tags:
wg-config
- name: Read public key from local filesystem
set_fact:
public_key: "{{lookup('file', public_key_file_path)}}"
tags:
wg-config
- name: Create WireGuard configuration directory
file:
dest: "{{wireguard_remote_directory}}"
state: directory
mode: 0700
tags:
- wg-config
- name: Generate WireGuard configuration file
template:
src: wg-fullmesh.conf.j2
dest: "{{wireguard_remote_directory}}/wg0.conf"
owner: root
group: root
mode: 0600
tags:
- wg-config
- name: Start and enable WireGuard service
service:
name: wg-quick@wg0
state: started
enabled: yes