Fix hiera lookup for Firehose public key

It was pulling the private key.

Change-Id: Iff51947fe486f7b3a12119ca1c9cafb346d88e2c
This commit is contained in:
Ricardo Carrillo Cruz 2016-08-02 09:45:10 +02:00
parent a5cbf47b4a
commit 5854b9c420

View File

@ -470,7 +470,7 @@ node /^firehose\d+\.openstack\.org$/ {
}
class { 'openstack_project::firehose':
gerrit_ssh_host_key => hiera('gerrit_ssh_rsa_pubkey_contents'),
gerrit_public_key => hiera('germqtt_gerrit_ssh_private_key'),
gerrit_public_key => hiera('germqtt_gerrit_ssh_public_key'),
gerrit_private_key => hiera('germqtt_gerrit_ssh_private_key'),
mqtt_password => hiera('mqtt_service_user_password'),
}