From b964f20cd2132829492115ef190a18f9ee0b6c39 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Thu, 26 Jan 2017 21:00:55 +0000 Subject: [PATCH] Correct hiera keys for docs/developer certs Use the correct hiera key names for the HTTPS cert/chain/key file contents used by the developer.openstack.org and docs.openstack.org sites. Change-Id: I84f790bf132c81678836e84b2f89bdb01ed71f73 --- manifests/site.pp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/manifests/site.pp b/manifests/site.pp index ad053caf5a..ef16c1919c 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -677,12 +677,12 @@ node 'files01.openstack.org' { class { 'openstack_project::files': vhost_name => 'files.openstack.org', - developer_cert_file_contents => hiera('developer_ssl_cert_file_contents'), - developer_key_file_contents => hiera('developer_ssl_key_file_contents'), - developer_chain_file_contents => hiera('developer_ssl_chain_file_contents'), - docs_cert_file_contents => hiera('docs_ssl_cert_file_contents'), - docs_key_file_contents => hiera('docs_ssl_key_file_contents'), - docs_chain_file_contents => hiera('docs_ssl_chain_file_contents'), + developer_cert_file_contents => hiera('developer_cert_file_contents'), + developer_key_file_contents => hiera('developer_key_file_contents'), + developer_chain_file_contents => hiera('developer_chain_file_contents'), + docs_cert_file_contents => hiera('docs_cert_file_contents'), + docs_key_file_contents => hiera('docs_key_file_contents'), + docs_chain_file_contents => hiera('docs_chain_file_contents'), require => Class['Openstack_project::Server'], } }