ansible/dns.yml

35 lines
792 B
YAML

---
# dns.yml
- name: Add A Records for thesatelliteoflove.com
hosts: localhost
gather_facts: false
vars:
domain_name: thesatelliteoflove.com
dns_records:
- name: "pin"
ip: "152.53.36.98"
- name: "home"
ip: "152.53.36.98"
- name: "git"
ip: "152.53.36.98"
- name: "social"
ip: "152.53.36.98"
- name: "auth"
ip: "152.53.36.98"
- name: "audio"
ip: "152.53.36.98"
- name: "books"
ip: "152.53.36.98"
tasks:
- name: Add A records for subdomains
amazon.aws.route53:
state: present
zone: "{{ domain_name }}"
record: "{{ item.name }}.{{ domain_name }}"
type: A
ttl: 300
value: "{{ item.ip }}"
loop: "{{ dns_records }}"