redpanda-data / redpanda-ansible-collection

Apache License 2.0
8 stars 6 forks source link

Set TLS on Console listener #65

Closed vuldin closed 4 months ago

vuldin commented 12 months ago

Currently no option to set TLS on the console listener. I added these vars:

  }{% if enable_tls | default(false) %},
  "server": {
    "listenPort": {{ console_port_http }},
    "httpsListenPort": {{ console_port_https }},
    "tls": {
      "enabled": true,
      "certFilepath": "{{ console_cert_file }}",
      "keyFilepath": "{{ console_key_file }}",
    }
  }
  {% endif %}
}