
Role vars have a higher precedence than role defaults. This allows to import default vars from another role via vars_files without overriding project_name (see related bug for details). Change-Id: I3d919736e53d6f3e1a70d1267cf42c8d2c0ad221 Related-Bug: #1951785
17 lines
584 B
YAML
17 lines
584 B
YAML
---
|
|
haproxy_service_template: "haproxy_single_service_split.cfg.j2"
|
|
|
|
# Extra frontend/backend options (additive with locally defined options)
|
|
haproxy_frontend_http_extra:
|
|
- "option httplog"
|
|
- "option forwardfor"
|
|
haproxy_frontend_tcp_extra:
|
|
- "option tcplog"
|
|
haproxy_backend_http_extra: []
|
|
haproxy_backend_tcp_extra: []
|
|
|
|
haproxy_health_check: "check inter 2000 rise 2 fall 5"
|
|
haproxy_health_check_ssl: "check check-ssl inter 2000 rise 2 fall 5"
|
|
|
|
haproxy_enable_federation_openid: "{{ keystone_identity_providers | selectattr('protocol','equalto','openid') | list | count > 0 }}"
|