From ff0959a200cfad26d0c688bf293e3ebeb365ff48 Mon Sep 17 00:00:00 2001 From: Richard Su Date: Tue, 11 Feb 2014 15:52:37 -0800 Subject: Add username parameter for rabbit Username is currently assumed to be guest in the configuration files. This change makes it more explicit. Configuration files in tripleo-image-elements will be updated to use this parameter in an upcoming patch. Change-Id: Ia176f4d573a3a293560c72236a4181befa678301 --- undercloud-source.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'undercloud-source.yaml') diff --git a/undercloud-source.yaml b/undercloud-source.yaml index 9c49e656..72a5beb1 100644 --- a/undercloud-source.yaml +++ b/undercloud-source.yaml @@ -57,6 +57,15 @@ Parameters: Description: The password for the nova service account, used by nova-api. Type: String NoEcho: true + RabbitUserName: + Default: guest + Description: The username for RabbitMQ + Type: String + RabbitPassword: + Default: guest + Description: The password for RabbitMQ + Type: String + NoEcho: true Resources: AccessPolicy: Properties: @@ -165,7 +174,10 @@ Resources: Ref: NeutronPassword rabbit: host: 127.0.0.1 - password: guest + username: + Ref: RabbitUserName + password: + Ref: RabbitPassword undercloud: Type: OS::Nova::Server Properties: -- cgit 1.2.3-korg