From 4321d3e7a81ab0f342a682f10b455316de823806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Fri, 1 Mar 2019 14:50:15 +0100 Subject: [PATCH] rabbit/queue: Fix missing parantheses MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Konečný --- roles/rabbit/queue/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/rabbit/queue/tasks/main.yml b/roles/rabbit/queue/tasks/main.yml index 5e419b2791..6c567cb813 100644 --- a/roles/rabbit/queue/tasks/main.yml +++ b/roles/rabbit/queue/tasks/main.yml @@ -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