blob: 9da0966dfb0703600817ba94dfdc804fd42dec80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
"log.path": "{{ pillar["customer_web_ui"]["log"] }}"
{% raw %}
{% if "True" == openbook_install_customer_web_ui|string() %}
,"application.port": {{ openbook_customer_web_ui_port }}
,"cluster.interfaces": ["{{ ansible_default_ipv4.address }}"]
,"jwt.signature.key": "{{ openbook_jwt_signature_key }}"
{% endif %}
{% if openbook_disable_ssl_cert %}
,"application.disableSSL": true
{% elif openbook_ssl_cert and openbook_ssl_key %}
,"ssl.cert.path": "{{ openbook_ssl_cert }}"
,"ssl.key.path": "{{ openbook_ssl_key }}"
{% endif %}
{% endraw %}
}
|