Skip to content

Commit a7809a2

Browse files
committed
Fix unscoped template variables
LDAP related variables in rabbitmq.config.erb rely on dynamic scoping, which is discontinued in the future parser. They need to be exposed in rabbitmq::config in order to be accessible in the template.
1 parent 1cc2e54 commit a7809a2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

manifests/config.pp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
$ssl_verify = $rabbitmq::ssl_verify
3333
$ssl_fail_if_no_peer_cert = $rabbitmq::ssl_fail_if_no_peer_cert
3434
$stomp_port = $rabbitmq::stomp_port
35+
$ldap_auth = $rabbitmq::ldap_auth
36+
$ldap_server = $rabbitmq::ldap_server
37+
$ldap_user_dn_pattern = $rabbitmq::ldap_user_dn_pattern
38+
$ldap_use_ssl = $rabbitmq::ldap_use_ssl
39+
$ldap_port = $rabbitmq::ldap_port
40+
$ldap_log = $rabbitmq::ldap_log
3541
$wipe_db_on_cookie_change = $rabbitmq::wipe_db_on_cookie_change
3642
$config_variables = $rabbitmq::config_variables
3743
$config_kernel_variables = $rabbitmq::config_kernel_variables

0 commit comments

Comments
 (0)