edit proxy

This commit is contained in:
Arne Teuke
2025-01-28 16:32:55 +01:00
parent a9b856f688
commit 96a9b003ad
3 changed files with 35 additions and 24 deletions

View File

@@ -40,27 +40,35 @@
###############################################################################
define cd_haproxy::server::proxy (
$haproxy_fqdn = undef,
$frontend_name = undef,
$frontend_mode = undef,
$fe_use_backend = '',
$fe_bind_mode = undef,
$frontend_order = '010',
$acl_rule_front = '',
$acl_rule_back = '',
$backend_name = undef,
$backend_order = '030',
$fe_maxconn = '',
$be_server_name = undef,
$be_balance = '',
$be_mode = '',
$haproxy_fqdn = undef,
$frontend_name = undef,
$frontend_mode = undef,
$fe_use_backend = '',
$fe_bind_mode = undef,
$frontend_order = '010',
$acl_rule_front = '',
$acl_rule_back = '',
$backend_name = undef,
$backend_order = '030',
$fe_maxconn = '',
$be_server_name = undef,
$be_balance = '',
$be_mode = '',
) {
$hy_main_config = '/etc/haproxy/haproxy.cfg'
$hy_frontendrule = 'cd_haproxy/haproxy_frontend_rule.erb'
$hy_backendrule = 'cd_haproxy/haproxy_backend_rule.erb'
$hy_acl_rule = 'cd_haproxy/haproxy_acl_rule.erb'
$hy_main_config = '/etc/haproxy/haproxy.cfg'
$hy_frontendrule = 'cd_haproxy/haproxy_frontend_rule.erb'
$hy_backendrule = 'cd_haproxy/haproxy_backend_rule.erb'
$hy_acl_rule = 'cd_haproxy/haproxy_acl_rule.erb'
# Ensure acl_rule_front and acl_rule_back are arrays
$acl_rule_front_array = Array($acl_rule_front)
$acl_rule_back_array = Array($acl_rule_back)
# Ensure fe_use_backend are arrays
$fe_use_backend_array = Array($fe_use_backend)
# create frontend section
concat::fragment { "frontend_${name}":