Add playbook to setup dns entries

This commit is contained in:
Adw8
2024-10-01 16:16:23 +05:30
parent 631a859080
commit e7791161ed
4 changed files with 83 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
# service-provider-setup
@@ -0,0 +1,5 @@
domain: ""
subdomain: ""
subdomain_cluster_control: "{{ subdomain }}-cluster-control"
cluster_control_ip: ""
do_api_token: ""
+5
View File
@@ -0,0 +1,5 @@
domain: "test.wireitin.com"
subdomain: "dss-ind"
subdomain_cluster_control: "{{ subdomain }}-cluster-control"
cluster_control_ip: "64.227.134.44"
do_api_token: ""
+72
View File
@@ -0,0 +1,72 @@
- name: Configure DNS records
hosts: localhost
gather_facts: no
vars_files:
- dns-vars.yml
tasks:
- name: Create a domain
community.digitalocean.digital_ocean_domain:
state: present
oauth_token: "{{ do_api_token }}"
name: "{{ domain }}"
ip: "{{ cluster_control_ip }}"
- name: Create record for cluster control machine
community.digitalocean.digital_ocean_domain_record:
state: present
oauth_token: "{{ do_api_token }}"
domain: "{{ domain }}"
type: A
name: "{{ subdomain }}-cluster-control"
data: "{{ cluster_control_ip }}"
- name: Create CNAME record for www
community.digitalocean.digital_ocean_domain_record:
state: present
oauth_token: "{{ do_api_token }}"
data: "{{ domain }}"
domain: "{{ domain }}"
type: CNAME
name: www
ttl: 43200
- name: Create CNAME record for subdomain
community.digitalocean.digital_ocean_domain_record:
state: present
oauth_token: "{{ do_api_token }}"
data: "{{ subdomain_cluster_control }}.{{ domain }}"
domain: "{{ domain }}"
type: CNAME
name: "{{ subdomain }}"
ttl: 43200
- name: Create wildcard CNAME record for subdomain
community.digitalocean.digital_ocean_domain_record:
state: present
oauth_token: "{{ do_api_token }}"
data: "{{ subdomain_cluster_control }}.{{ domain }}"
domain: "{{ domain }}"
type: CNAME
name: "*.{{ subdomain }}"
ttl: 43200
- name: Create CNAME record for pwa
community.digitalocean.digital_ocean_domain_record:
state: present
oauth_token: "{{ do_api_token }}"
data: "{{ subdomain_cluster_control }}.{{ domain }}"
domain: "{{ domain }}"
type: CNAME
name: "pwa"
ttl: 43200
- name: Create wildcard CNAME record for pwa
community.digitalocean.digital_ocean_domain_record:
state: present
oauth_token: "{{ do_api_token }}"
data: "{{ subdomain_cluster_control }}.{{ domain }}"
domain: "{{ domain }}"
type: CNAME
name: "*.pwa"
ttl: 43200