summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/elasticsearch.pp8
-rw-r--r--manifests/kibana.pp7
2 files changed, 15 insertions, 0 deletions
diff --git a/manifests/elasticsearch.pp b/manifests/elasticsearch.pp
new file mode 100644
index 0000000..525e228
--- /dev/null
+++ b/manifests/elasticsearch.pp
@@ -0,0 +1,8 @@
+class profiles::elasticsearch (
+) {
+ include ::java
+
+ class { 'elasticsearch':
+ restart_on_change => true,
+ }
+}
diff --git a/manifests/kibana.pp b/manifests/kibana.pp
new file mode 100644
index 0000000..23f9857
--- /dev/null
+++ b/manifests/kibana.pp
@@ -0,0 +1,7 @@
+class profiles::kibana (
+) {
+
+ class { 'kibana':
+ }
+
+}