1
0
mirror of https://github.com/openshift/openshift-ansible-contrib.git synced 2026-02-05 09:45:58 +01:00

Fix for internal wildcard dns

This commit is contained in:
Chris Callegari
2018-05-31 19:50:45 -04:00
committed by Ryan Cook
parent a851ba83e4
commit 120381ea52

View File

@@ -31,3 +31,14 @@
ttl: 300
value: "{{ elbextinfra.elb.dns_name }}"
zone: "{{ r53zoneext.result.name }}"
- name: "Create Route53 wildcard CNAME record (internal)"
route53:
command: create
overwrite: yes
private_zone: no
record: "*.apps.{{ clusterid }}.{{ dns_domain }}"
type: CNAME
ttl: 300
value: "{{ elbextinfra.elb.dns_name }}"
zone: "{{ r53zoneint.result.name }}"