rabbit: queue: Allow users to read from zmq.topic

This commit is contained in:
Jeremy Cline 2019-06-14 19:26:07 +00:00
parent 42a9b50f05
commit b6cb5aa35d

View file

@ -25,7 +25,7 @@
rabbitmq_user:
user: "{{ username }}"
vhost: "{{ vhost }}"
read_priv: "^(amq\\.topic)|({{ username }}.*)$" # Read from queues prefixed with their name and bind to the topic exchange
read_priv: "^(zmq\\.topic)|^(amq\\.topic)|({{ username }}.*)$" # Read from queues prefixed with their name and bind to the topic exchange
write_priv: "^(amq\\.topic)|({{ username }}.*)$" # Write to queues prefixed with their name and publish to the topic exchange
configure_priv: "^$" # No configuration permissions
state: present