Improve Variables

This commit is contained in:
nazunalika 2021-01-22 23:28:06 -07:00
parent bf991ce03c
commit ed2348aaa2
2 changed files with 6 additions and 3 deletions

View File

@ -20,6 +20,9 @@ rabbitmq_env: "default"
rabbitmq_ldap_servers: rabbitmq_ldap_servers:
- ipa001.rockylinux.org - ipa001.rockylinux.org
- ipa002.rockylinux.org - ipa002.rockylinux.org
rabbitmq_ldap_bind_dn: "uid=binder,cn=sysaccounts,cn=etc,dc=rockylinux,dc=org"
rabbitmq_ldap_bind_pw: "ThisIsNotThePassword1!"
rabbitmq_ldap_basedn: "cn=accounts,dc=rockylinux,dc=org"
# You can override this in your playbooks as well # You can override this in your playbooks as well
rabbitmq_plugins: rabbitmq_plugins:

View File

@ -25,10 +25,10 @@ auth_mechanisms.2 = EXTERNAL
auth_mechanisms.3 = AMQPLAIN auth_mechanisms.3 = AMQPLAIN
ssl_cert_login_from = common_name ssl_cert_login_from = common_name
auth_ldap.dn_lookup_bind.user_dn = {{ rocky_ldap_bind_dn }} auth_ldap.dn_lookup_bind.user_dn = {{ rabbitmq_ldap_bind_dn }}
auth_ldap.dn_lookup_bind.password = {{ rocky_ldap_bind_pw }} auth_ldap.dn_lookup_bind.password = {{ rabbitmq_ldap_bind_pw }}
auth_ldap.dn_lookup_attribute = uid auth_ldap.dn_lookup_attribute = uid
auth_ldap.dn_lookup_base = {{ rocky_ldap_account_basedn }} auth_ldap.dn_lookup_base = {{ rabbitmq_ldap_basedn }}
auth_ldap.port = 389 auth_ldap.port = 389
auth_ldap.connection_pool_size = 256 auth_ldap.connection_pool_size = 256
auth_ldap.idle_timeout = 120000 auth_ldap.idle_timeout = 120000