aboutsummaryrefslogtreecommitdiffstats
path: root/roles/wireguard/tasks/configuration.yml
blob: 0a2009e72844841ed89312fb64250cba9a1f5e3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---

- name: generate wireguard configuration
  ansible.builtin.template:
    src: wireguard.conf.j2
    dest: "{{ wireguard_local_dir }}/{{ item }}.conf"
    mode: "0600"
  vars:
    host: "{{ hostvars[item] }}"
  run_once: true
  delegate_to: localhost
  loop: "{{ groups.all }}"

- name: copy wireguard configuration
  ansible.builtin.copy:
    src: "{{ wireguard_local_dir }}/{{ wireguard_local_configuration }}"
    dest: "{{ wireguard_dir }}/{{ wireguard_domain_controller }}.conf"
    owner: 0
    group: 0
    mode: "0600"
remember that computers suck.