From e87a0cf268bc2b00f76a1c2b68c670e0faea0cad Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Wed, 20 Apr 2022 23:27:58 -0500 Subject: [PATCH] correct TLD in comment --- roles/manage-records/vars/sampledomain.local.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/manage-records/vars/sampledomain.local.yml b/roles/manage-records/vars/sampledomain.local.yml index 914816b..eae1960 100644 --- a/roles/manage-records/vars/sampledomain.local.yml +++ b/roles/manage-records/vars/sampledomain.local.yml @@ -1,10 +1,10 @@ domain: sampledomain.local records: - - name: 'subdomain' # create a silly localhost subdomain.sampledomain.io A record (IPv4) + - name: 'subdomain' # create a silly localhost subdomain.sampledomain.local A record (IPv4) value: '127.0.0.1' type: A state: present - - name: 'subdomain' # remove equally silly subdomain.sampledomain.io AAAA record (IPv6 local) + - name: 'subdomain' # remove equally silly subdomain.sampledomain.local AAAA record (IPv6 local) value: '::1' type: AAAA state: absent