summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/x509/client_ca
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-09-24 17:55:22 +0200
committervarac <varacanero@zeromail.org>2013-09-24 21:03:36 +0200
commit0447e92ab5dcc3d8a07613a765c60db23252f278 (patch)
tree00d2e37d8b69af3a4a4491563b06f977c3c5f350 /puppet/modules/site_config/manifests/x509/client_ca
parent372c2f96997f90ae9bfd6c3315e7244ce851c460 (diff)
added site_config::x509::client_ca::cert and site_config::x509::client_ca::key for client_ca deployment (#3917)
Diffstat (limited to 'puppet/modules/site_config/manifests/x509/client_ca')
-rw-r--r--puppet/modules/site_config/manifests/x509/client_ca/ca.pp14
-rw-r--r--puppet/modules/site_config/manifests/x509/client_ca/key.pp14
2 files changed, 28 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/x509/client_ca/ca.pp b/puppet/modules/site_config/manifests/x509/client_ca/ca.pp
new file mode 100644
index 00000000..0f313898
--- /dev/null
+++ b/puppet/modules/site_config/manifests/x509/client_ca/ca.pp
@@ -0,0 +1,14 @@
+class site_config::x509::client_ca::ca {
+
+ ##
+ ## This is for the special CA that is used exclusively for generating
+ ## client certificates by the webapp.
+ ##
+
+ $x509 = hiera('x509')
+ $cert = $x509['client_ca_cert']
+
+ x509::ca { $site_config::params::client_ca_name:
+ content => $cert
+ }
+}
diff --git a/puppet/modules/site_config/manifests/x509/client_ca/key.pp b/puppet/modules/site_config/manifests/x509/client_ca/key.pp
new file mode 100644
index 00000000..f9ef3f52
--- /dev/null
+++ b/puppet/modules/site_config/manifests/x509/client_ca/key.pp
@@ -0,0 +1,14 @@
+class site_config::x509::client_ca::key {
+
+ ##
+ ## This is for the special CA that is used exclusively for generating
+ ## client certificates by the webapp.
+ ##
+
+ $x509 = hiera('x509')
+ $key = $x509['client_ca_key']
+
+ x509::key { $site_config::params::client_ca_name:
+ content => $key
+ }
+}