Increase TTLs on DNS records to 3600s (from 300s)

I'm fairly confident in the stability of my record sets now that I've done most of the experimentation
This commit is contained in:
Salt 2020-08-27 17:40:53 -05:00
parent ddd8195e17
commit 82c78e092e
3 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@
zone: 9iron.club zone: 9iron.club
type: A type: A
record: "{{ inventory_hostname }}." record: "{{ inventory_hostname }}."
ttl: 300 ttl: 3600
value: [ "{{ ipify_public_ip }}" ] value: [ "{{ ipify_public_ip }}" ]
wait: yes wait: yes
become: yes become: yes

View File

@ -17,7 +17,7 @@
zone: 9iron.club zone: 9iron.club
type: CNAME type: CNAME
record: tes3mp.9iron.club record: tes3mp.9iron.club
ttl: 300 ttl: 3600
value: [ "{{ inventory_hostname }}." ] value: [ "{{ inventory_hostname }}." ]
become: yes become: yes
tags: [ dns ] tags: [ dns ]
@ -58,7 +58,7 @@
# zone: 9iron.club # zone: 9iron.club
# type: CNAME # type: CNAME
# record: "{{ source_instancename }}.src.9iron.club." # record: "{{ source_instancename }}.src.9iron.club."
# ttl: 300 # ttl: 3600
# value: [ "{{ inventory_hostname }}." ] # value: [ "{{ inventory_hostname }}." ]
# become: yes # become: yes
# tags: [ dns ] # tags: [ dns ]
@ -69,7 +69,7 @@
# zone: 9iron.club # zone: 9iron.club
# type: CNAME # type: CNAME
# record: "{{ mcname }}.mc.9iron.club." # record: "{{ mcname }}.mc.9iron.club."
# ttl: 300 # ttl: 3600
# value: [ "{{ inventory_hostname }}." ] # value: [ "{{ inventory_hostname }}." ]
# become: yes # become: yes
# tags: [ dns ] # tags: [ dns ]
@ -80,7 +80,7 @@
# zone: 9iron.club # zone: 9iron.club
# type: SRV # type: SRV
# record: "_minecraft._tcp.{{ mcname }}.mc.{{ zone }}." # record: "_minecraft._tcp.{{ mcname }}.mc.{{ zone }}."
# ttl: 300 # ttl: 3600
# value: [ "1 10 {{ mcport }} {{ inventory_hostname }}." ] # value: [ "1 10 {{ mcport }} {{ inventory_hostname }}." ]
# become: yes # become: yes
# tags: [ dns ] # tags: [ dns ]

View File

@ -10,7 +10,7 @@
zone: cowfee.moe zone: cowfee.moe
type: A type: A
record: "cowfee.moe." record: "cowfee.moe."
ttl: 300 ttl: 3600
value: [ "{{ ipify_public_ip }}" ] value: [ "{{ ipify_public_ip }}" ]
wait: yes wait: yes
become: yes become: yes