diff options
-rw-r--r-- | puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp b/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp index 02aae0c3..7739473e 100644 --- a/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp +++ b/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp @@ -12,13 +12,13 @@ define site_couchdb::apache_ssl_proxy ($key, $cert) { x509::key { 'leap_couchdb': - content => $x509['key'], + content => $key, notify => Service[apache]; } x509::cert { 'leap_couchdb': - content => $x509['cert'], + content => $cert, notify => Service[apache]; } |