From 7ce97e217f827eb3ec05d9d01eac49e52c275ceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Fri, 1 Mar 2019 14:46:21 +0100 Subject: [PATCH] rabbit/queue: Fix escape character 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/rabbit/queue/tasks/main.yml b/roles/rabbit/queue/tasks/main.yml index b027732155..5e419b2791 100644 --- a/roles/rabbit/queue/tasks/main.yml +++ b/roles/rabbit/queue/tasks/main.yml @@ -25,8 +25,8 @@ rabbitmq_user: user: "{{ username }}" vhost: "{{ vhost }}" - 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 + 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