Infra: Cleanup Nomad configs
[csit.git] / fdio.infra.ansible / roles / nomad / templates / tls.hcl.j2
1 {% if nomad_tls_enable | bool %}
2 tls {
3     http = {{ nomad_http | bool | lower }}
4     rpc = {{ nomad_rpc | bool | lower }}
5     ca_file = "{{ nomad_ca_file }}"
6     cert_file = "{{ nomad_cert_file }}"
7     key_file = "{{ nomad_key_file }}"
8     rpc_upgrade_mode = {{ nomad_rpc_upgrade_mode | bool | lower }}
9     verify_server_hostname = {{ nomad_verify_server_hostname | bool | lower }}
10     verify_https_client = {{ nomad_verify_https_client | bool | lower }}
11 }
12 {% endif %}