Ansible git move
[csit.git] / fdio.infra.ansible / roles / nomad / templates / tls.hcl.j2
1 {% if ( nomad_ca_file ) and
2       ( nomad_cert_file ) and
3       ( nomad_key_file )
4 %}
5 tls {
6     http = {{ nomad_http | bool | lower }}
7     rpc = {{ nomad_rpc | bool | lower }}
8     ca_file = "{{ nomad_ca_file }}"
9     cert_file = "{{ nomad_cert_file }}"
10     key_file = "{{ nomad_key_file }}"
11 }
12 {% endif %}