projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Upgrade logstash to the 6.x release stream
[chef.git]
/
roles
/
logstash.rb
1
name "logstash"
2
description "Role applied to all logstash servers"
3
4
default_attributes(
5
:elasticsearch => {
6
:cluster => {
7
:name => "logstash"
8
},
9
:version => "6.x"
10
},
11
:kibana => {
12
:sites => {
13
:logstash => {
14
:site => "logstash.openstreetmap.org",
15
:port => 5601,
16
:elasticsearch_url => "http://127.0.0.1:9200/"
17
}
18
}
19
}
20
)
21
22
run_list(
23
"role[elasticsearch]",
24
"role[kibana]",
25
"recipe[logstash]"
26
)