Configure the desu.ltd root A record

You can tell that the site serves basically nothing by the fact that I didn't notice this until now.
This commit is contained in:
Salt 2022-04-18 11:08:07 -05:00
parent 83891a72af
commit cfd4aa12b1

View File

@ -47,6 +47,15 @@
loop_control:
label: "{{ item.display }}"
tags: [ route53, dns, interface ]
- name: configure root a record
run_once: yes
community.aws.route53:
record: desu.ltd
type: A
ttl: 3600
state: present
value: 45.79.23.133
tags: [ route53, dns ]
delegate_to: localhost
when: status.value == "active" and inventory_hostname is match(".*\.desu\.ltd")
tags: [ route53, dns ]