2 # Cookbook Name:: logstash
5 # Copyright 2015, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # https://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 include_recipe "networking"
22 keys = data_bag_item("logstash", "keys")
29 cookbook_file "/var/lib/logstash/lumberjack.crt" do
30 source "lumberjack.crt"
34 notifies :restart, "service[logstash]"
37 file "/var/lib/logstash/lumberjack.key" do
38 content keys["lumberjack"].join("\n")
42 notifies :restart, "service[logstash]"
45 cookbook_file "/var/lib/logstash/beats.crt" do
50 notifies :restart, "service[logstash]"
53 file "/var/lib/logstash/beats.key" do
54 content keys["beats"].join("\n")
58 notifies :restart, "service[logstash]"
61 template "/etc/logstash/conf.d/chef.conf" do
62 source "logstash.conf.erb"
66 notifies :reload, "service[logstash]"
69 file "/etc/logrotate.d/logstash" do
74 action [:enable, :start]
75 supports :status => true, :restart => true, :reload => true
78 template "/etc/cron.daily/expire-logstash" do
85 forwarders = search(:node, "recipes:logstash\\:\\:forwarder") # ~FC010
87 forwarders.sort_by { |n| n[:fqdn] }.each do |forwarder|
88 forwarder.interfaces(:role => :external) do |interface|
89 firewall_rule "accept-lumberjack-#{forwarder}" do
91 family interface[:family]
92 source "#{interface[:zone]}:#{interface[:address]}"
99 firewall_rule "accept-beats-#{forwarder}" do
101 family interface[:family]
102 source "#{interface[:zone]}:#{interface[:address]}"
111 gateways = search(:node, "roles:gateway") # ~FC010
113 gateways.sort_by { |n| n[:fqdn] }.each do |gateway|
114 gateway.interfaces(:role => :external) do |interface|
115 firewall_rule "accept-lumberjack-#{gateway}" do
117 family interface[:family]
118 source "#{interface[:zone]}:#{interface[:address]}"
125 firewall_rule "accept-beats-#{gateway}" do
127 family interface[:family]
128 source "#{interface[:zone]}:#{interface[:address]}"