dns.yml 439 B

123456789101112131415
  1. ---
  2. - import_tasks: vpc_and_subnet_id.yml
  3. - import_tasks: build_elb_dict.yml
  4. - name: provision route53
  5. import_tasks: dns_route53.yml
  6. when: "openshift_aws_dns_provider == 'route53'"
  7. - name: provision custom dns
  8. include_role:
  9. name: "{{ openshift_aws_custom_dns_provider_role }}"
  10. tasks_from: "{{ openshift_aws_custom_provider_role_tasks | default('main.yml') }}"
  11. when:
  12. - openshift_aws_custom_dns_provider_role is defined