From dd248a23e6b44606e0602e16407e723a4ad5a210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Ro=C3=9Fdeutscher?= Date: Mon, 7 Sep 2015 16:30:14 +0200 Subject: [PATCH] add ca-base, crt-base and tune.ssl.default-dh-param properties to global part --- haproxy/templates/haproxy.jinja | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/haproxy/templates/haproxy.jinja b/haproxy/templates/haproxy.jinja index 7c9123a..e5a95b8 100644 --- a/haproxy/templates/haproxy.jinja +++ b/haproxy/templates/haproxy.jinja @@ -48,6 +48,15 @@ global {%- if 'tune' in salt['pillar.get']('haproxy:global', {}) %} {{- render_list_of_dictionaries('tune', salt['pillar.get']('haproxy:global:tune'), ' ','.') }} {%- endif %} +{%- if 'tune.ssl.default-dh-param' in salt['pillar.get']('haproxy:global', {}) %} + {{- render_list_of_dictionaries('tune.ssl.default-dh-param', salt['pillar.get']('haproxy:global:tune.ssl.default-dh-param'), ' ','.') }} +{%- endif %} +{%- if 'ca-base' in salt['pillar.get']('haproxy:global', {}) %} + {{- render_list_of_dictionaries('ca-base', salt['pillar.get']('haproxy:global:ca-base'), ' ','.') }} +{%- endif %} +{%- if 'crt-base' in salt['pillar.get']('haproxy:global', {}) %} + {{- render_list_of_dictionaries('crt-base', salt['pillar.get']('haproxy:global:crt-base'), ' ','.') }} +{%- endif %} {%- if 'ssl-default-bind-ciphers' in salt['pillar.get']('haproxy:global', {}) %} {{- render_list_of_dictionaries('ssl-default-bind-ciphers', salt['pillar.get']('haproxy:global:ssl-default-bind-ciphers')) }} {%- endif %}