summaryrefslogtreecommitdiff
path: root/puppet/modules/site_webapp/manifests/client_ca.pp
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-01-21 22:41:51 -0800
committerelijah <elijah@riseup.net>2013-01-21 22:41:51 -0800
commit306a0e6c21d0e27035ba48530392eede59537516 (patch)
tree1d9195dee41e820d9b0b9b5070c06be1126b6218 /puppet/modules/site_webapp/manifests/client_ca.pp
parent9ae011f2cbedfae166281f2f6a097acec35c943b (diff)
client ca -- configure the webapp with the client ca
Diffstat (limited to 'puppet/modules/site_webapp/manifests/client_ca.pp')
-rw-r--r--puppet/modules/site_webapp/manifests/client_ca.pp24
1 files changed, 24 insertions, 0 deletions
diff --git a/puppet/modules/site_webapp/manifests/client_ca.pp b/puppet/modules/site_webapp/manifests/client_ca.pp
new file mode 100644
index 00000000..53c49d69
--- /dev/null
+++ b/puppet/modules/site_webapp/manifests/client_ca.pp
@@ -0,0 +1,24 @@
+##
+## This is for the special CA that is used exclusively for generating
+## client certificates by the webapp.
+##
+
+class site_webapp::client_ca {
+ include x509::variables
+
+ $x509 = hiera('x509')
+ $cert_path = "${x509::variables::certs}/leap_client_ca.crt"
+ $key_path = "${x509::variables::keys}/leap_client_ca.key"
+
+ x509::key {
+ 'leap_client_ca':
+ source => $x509['client_ca_key'],
+ notify => Service[apache];
+ }
+
+ x509::cert {
+ 'leap_client_ca':
+ source => $x509['client_ca_cert'],
+ notify => Service[apache];
+ }
+}