Installs RabbitMQ service on RHEL/CentOS. RabbitMQ is an open-source message-broker software that originally implemented the Advanced Message Queuing Protocol (AMQP). Currently this role provides a possibility to install RabbitMQ server and create virtualhosts and users.
None.
An example of configuration:
use_classyllama_rabbitmq: true
rabbitmq_vhosts:
- name: production
- name: staging
rabbitmq_users:
- user: production
password: changeme
vhost: production
- user: staging
password: changeme
vhost: staging
- user: manager
password: rabbitmqmgr
tags: management
See defaults/main.yml
for details.
classyllama.rabbitmq
- hosts: all
roles:
- { role: classyllama.rabbitmq, tags: rabbitmq, when: use_classyllama_rabbitmq | default(false) }
This work is licensed under the MIT license. See LICENSE file for details.