Correct ovn_controller_certificate_specs hiera variable name

A recently merged change introduced a new puppet parameter
ovn_controller_certificate_specs with a matching hiera variable.
This change had a typo where the lookup is done from hieradata,
which this patch corrects.

Change-Id: Ifd789d8df0c279ab0a948011c0886e6fca0f664c
This commit is contained in:
Nathan Kinder 2019-09-13 17:01:57 -07:00
parent 16a2fcaa60
commit a22d1b5882
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ class tripleo::profile::base::certmonger_user (
$novnc_proxy_certificates_specs = hiera('novnc_proxy_certificates_specs',{}),
$ceph_grafana_certificate_specs = hiera('ceph_grafana_certificate_specs', {}),
$ovn_dbs_certificate_specs = hiera('ovn_dbs_certificate_specs', {}),
$ovn_controller_certificate_specs = hiera('ovn_controlle_rcertificate_specs', {}),
$ovn_controller_certificate_specs = hiera('ovn_controller_certificate_specs', {}),
$ovn_metadata_certificate_specs = hiera('ovn_metadata_certificate_specs', {}),
$neutron_ovn_certificate_specs = hiera('neutron_ovn_certificate_specs', {}),
$novnc_proxy_postsave_cmd = undef,