From 47aa12bb6858e56d3466f508a72c57777fc79e1f Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Sun, 21 Oct 2018 17:10:08 +0200 Subject: [PATCH] Fix README Closes-Bug: 1667100 Change-Id: Id7fcd68fc946f9cdac6a1c02131d3639895575a5 --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c8955543e..b07ab9c7f 100644 --- a/README.md +++ b/README.md @@ -50,11 +50,10 @@ To utilize the nova module's functionality you will need to declare multiple res ```puppet class { 'nova': - database_connection => 'mysql://nova:a_big_secret@127.0.0.1/nova?charset=utf8', - rabbit_userid => 'nova', - rabbit_password => 'an_even_bigger_secret', - glance_api_servers => 'localhost:9292', - rabbit_host => '127.0.0.1', + database_connection => 'mysql://nova:a_big_secret@127.0.0.1/nova?charset=utf8', + api_database_connection => 'mysql://nova:a_big_secret@127.0.0.1/nova_api?charset=utf8', + default_transport_url => 'rabbit://nova:an_even_bigger_secret@127.0.0.1:5672/nova', + glance_api_servers => 'localhost:9292', } class { 'nova::compute':