diff --git a/dns.yml b/dns.yml new file mode 100644 index 0000000..12e4397 --- /dev/null +++ b/dns.yml @@ -0,0 +1,26 @@ +--- +# 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" + + 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 }}"