rabbit/queue: Fix missing parantheses

Signed-off-by: Michal Konečný <mkonecny@redhat.com>
This commit is contained in:
Michal Konečný 2019-03-01 14:50:15 +01:00
parent 7ce97e217f
commit 4321d3e7a8

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 from the exchange
read_priv: "^(amq\\.topic)|({{ username }}.*)$" # Read from queues prefixed with their name and from the exchange
write_priv: "amq\\.topic" # Publish to the topic exchange
configure_priv: "^$" # No configuration permissions
state: present