diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2018-12-29 00:54:33 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2018-12-29 00:54:33 +0100 |
commit | 9297d5731f8f069c719a9b8812a4fa92cd2a07c0 (patch) | |
tree | 911101f17db95c5061f1b5b91098fdfdaf4f39a0 /ansible/files | |
parent | 17a6c2aa2c5610860da11ad242aa8c79507442a2 (diff) | |
download | infra-9297d5731f8f069c719a9b8812a4fa92cd2a07c0.tar.gz infra-9297d5731f8f069c719a9b8812a4fa92cd2a07c0.tar.bz2 infra-9297d5731f8f069c719a9b8812a4fa92cd2a07c0.tar.xz infra-9297d5731f8f069c719a9b8812a4fa92cd2a07c0.zip |
wireguard: Creating DNS records file.
Diffstat (limited to 'ansible/files')
-rw-r--r-- | ansible/files/wireguard-dns-records-net1.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ansible/files/wireguard-dns-records-net1.yml b/ansible/files/wireguard-dns-records-net1.yml new file mode 100644 index 0000000..5a3665d --- /dev/null +++ b/ansible/files/wireguard-dns-records-net1.yml @@ -0,0 +1,25 @@ +wireguard_dns_records_net1: + - type: A + name: birgitte + value: 192.168.80.2 + state: present + - type: AAAA + name: birgitte + value: fdf3:aad9:a885:0b3a::2 + state: present + - type: A + name: conflatorio + value: 192.168.80.3 + state: absent + - type: AAAA + name: conflatorio + value: fdf3:aad9:a885:0b3a::3 + state: absent + - type: A + name: fuckaduck + value: 192.168.80.4 + state: present + - type: AAAA + name: fuckaduck + value: fdf3:aad9:a885:0b3a::4 + state: present |