summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/x509/cert_key.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_config/manifests/x509/cert_key.pp')
-rw-r--r--puppet/modules/site_config/manifests/x509/cert_key.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/x509/cert_key.pp b/puppet/modules/site_config/manifests/x509/cert_key.pp
new file mode 100644
index 00000000..d55c6cf2
--- /dev/null
+++ b/puppet/modules/site_config/manifests/x509/cert_key.pp
@@ -0,0 +1,15 @@
+class site_config::x509::cert_key {
+
+ $x509 = hiera('x509')
+ $key = $x509['key']
+ $cert = $x509['cert']
+
+ x509::key { $site_config::params::cert_name:
+ content => $key
+ }
+
+ x509::cert { $site_config::params::cert_name:
+ content => $cert
+ }
+
+}