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
This commit is contained in:
Jeremy Stanley 2017-01-26 21:00:55 +00:00
parent 7ae4c43b18
commit b964f20cd2

View File

@ -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'],
}
}