Update Nova VNC puppet variables

We recently introduced new variables to puppet-nova that expose nova VNC
settings for SSL ciphers:

  I3a1262f70f6a801db276701a39ebb01f40025192

However, when we updated tht we used the actual names of the nova
settings instead of the names of the puppet variables:

  Ida03a0aa54ca15b343339d92abb9c105ead8b0b6

This patch changes tht to use the puppet variables instead of the nova
configuration names. Without this patch, setting the heat variables has
no affect on tls settings in nova.conf.

Change-Id: Iacc25c694f2e5491e971b9cef4e984602be25c04
This commit is contained in:
Lance Bragstad 2020-04-28 14:19:16 +00:00 committed by Douglas Mendizábal
parent 793bb2673e
commit 0f5923d1d3
1 changed files with 2 additions and 2 deletions

View File

@ -171,8 +171,8 @@ outputs:
nova::vncproxy::vencrypt_cert: /etc/pki/libvirt-vnc/client-cert.pem
nova::vncproxy::vencrypt_ca: /etc/pki/libvirt-vnc/ca-cert.pem
nova::ssl_only: true
nova::console::ssl_ciphers: {get_param: NovaVNCProxySSLCiphers}
nova::console::ssl_minimum_version: {get_param: NovaVNCProxySSLMinimumVersion}
nova::console_ssl_ciphers: {get_param: NovaVNCProxySSLCiphers}
nova::console_ssl_minimum_version: {get_param: NovaVNCProxySSLMinimumVersion}
nova::cert: /etc/pki/tls/certs/novnc_proxy.crt
nova::key: /etc/pki/tls/private/novnc_proxy.key
generate_service_certificates: true