diff options
Diffstat (limited to 'manifests/certmonger/haproxy.pp')
-rw-r--r-- | manifests/certmonger/haproxy.pp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/manifests/certmonger/haproxy.pp b/manifests/certmonger/haproxy.pp index 0806e40..2b738e6 100644 --- a/manifests/certmonger/haproxy.pp +++ b/manifests/certmonger/haproxy.pp @@ -36,18 +36,23 @@ # The post-save-command that certmonger will use once it renews the # certificate. # +# [*principal*] +# The haproxy service principal that is set for HAProxy in kerberos. +# define tripleo::certmonger::haproxy ( $service_pem, $service_certificate, $service_key, $hostname, $postsave_cmd, + $principal = undef, ){ certmonger_certificate { "${title}-cert": hostname => $hostname, certfile => $service_certificate, keyfile => $service_key, postsave_cmd => $postsave_cmd, + principal => $principal, } concat { $service_pem : ensure => present, |