ansible/playbooks/dns.yml

18 lines
383 B
YAML
Raw Normal View History

2020-08-01 16:25:56 -05:00
#!/usr/bin/ansible-playbook
# vim:ft=ansible:
- hosts: 9iron.club
tasks:
- name: Add machine to DNS zone
route53:
state: present
overwrite: yes
zone: 9iron.club
type: A
record: "{{ inventory_hostname }}."
ttl: 3600
2020-08-01 16:25:56 -05:00
value: [ "{{ ipify_public_ip }}" ]
wait: yes
2020-08-01 16:36:04 -05:00
become: yes
2020-08-01 16:25:56 -05:00
tags: [ common, dns ]