From 32de32b3182cd95f410ba6e100fc231d3fa7ff78 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Sun, 21 Oct 2018 16:34:21 +0200 Subject: [PATCH] Fix rabbitmq README Change-Id: Iaf2c116acf8b7711278cb9b07c031d4a53b94666 --- README.md | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 94567e0a..5482cdfe 100644 --- a/README.md +++ b/README.md @@ -109,12 +109,20 @@ class { 'glance::keystone::auth': ```puppet class { 'glance::notify::rabbitmq': - rabbit_password => 'pass', - rabbit_userid => 'guest', - rabbit_hosts => [ - 'localhost:5672', 'remotehost:5672' - ], - rabbit_use_ssl => false, + default_transport_url => os_transport_url({ + 'transport' => 'rabbit', + 'hosts' => ['host1', 'host2'], + 'username' => 'glance', + 'password' => 'secret', + 'virtual_host' => 'glance', + )}, + notification_transport_url => os_transport_url({ + 'transport' => 'rabbit', + 'hosts' => ['host1', 'host2'], + 'username' => 'notify', + 'password' => 'secret', + 'virtual_host' => 'notify', + )}, } ```