]> git.openstreetmap.org Git - chef.git/blobdiff - roles/letsencrypt.rb
Add framework for managing letsencrypt certificates
[chef.git] / roles / letsencrypt.rb
diff --git a/roles/letsencrypt.rb b/roles/letsencrypt.rb
new file mode 100644 (file)
index 0000000..c0b389d
--- /dev/null
@@ -0,0 +1,16 @@
+name "letsencrypt"
+description "Role applied to all letsencrypt servers"
+
+default_attributes(
+  :accounts => {
+    :users => {
+      :letsencrypt => {
+        :status => :role
+      }
+    }
+  }
+)
+
+run_list(
+  "recipe[letsencrypt]"
+)