ansible-role-rabbitmq/defaults/main.yml

47 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2020-12-26 16:52:54 +00:00
---
2020-12-26 19:04:50 +00:00
# ansible default variables - most variables live here
# You are expected to deploy the certificates yourself
rabbitmq_tls_ca_cert: "/etc/pki/tls/certs/ca-bundle.crt"
rabbitmq_tls_cert: "/etc/pki/tls/certs/{{ ansible_fqdn }}.crt"
rabbitmq_tls_key: "/etc/pki/tls/private/{{ ansible_fqdn }}.key"
rabbitmq_tls_link_dir: "/etc/rabbitmq/certs"
rabbitmq_file_limit: 500000
# You are expected to set these yourself in your playbook
2020-12-27 03:52:59 +00:00
rabbitmq_cookie: "NotASafeCookie"
rabbitmq_admin_password: "NotASafePassword"
2021-01-27 03:26:58 +00:00
rabbitmq_cluster_name: "rabbit"
2020-12-27 03:52:59 +00:00
rabbitmq_cluster_list:
- rabbitmq01.rockylinux.org
- rabbitmq02.rockylinux.org
- rabbitmq03.rockylinux.org
2021-01-27 03:26:58 +00:00
rabbitmq_env: "production"
2020-12-30 02:40:15 +00:00
rabbitmq_ldap_servers:
- ipa001.rockylinux.org
- ipa002.rockylinux.org
2021-01-23 06:28:06 +00:00
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"
2020-12-26 19:04:50 +00:00
2020-12-27 03:52:59 +00:00
# You can override this in your playbooks as well
2020-12-26 19:04:50 +00:00
rabbitmq_plugins:
- rabbitmq_amqp1_0
- rabbitmq_auth_backend_ldap
- rabbitmq_auth_mechanism_ssl
- rabbitmq_management
- rabbitmq_mqtt
2020-12-27 03:52:59 +00:00
- rabbitmq_federation
- rabbitmq_federation_management
2021-03-10 03:58:45 +00:00
- rabbitmq_peer_discovery_common
2020-12-30 00:07:26 +00:00
# If you want monitoring, set these in your playbooks
2022-03-28 03:04:38 +00:00
# rabbitmq_monitoring_username: mq-monitoring
# rabbitmq_monitoring_password: NotASafePassword
2020-12-30 00:07:26 +00:00
# Enable the public pubsub or not
rabbitmq_enable_public: false
2022-03-28 03:04:38 +00:00
# pubsub_federation_pass: ...
2021-01-28 21:09:24 +00:00
rabbitmq_mbs_password: "ThisIsNotThePassword!"