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 # http://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 template "/etc/logstash/conf.d/chef.conf" do
46 source "logstash.conf.erb"
50 notifies :reload, "service[logstash]"
53 file "/etc/logrotate.d/logstash" do
58 action [:enable, :start]
59 supports :status => true, :restart => true, :reload => true
62 template "/etc/cron.daily/expire-logstash" do
69 forwarders = search(:node, "recipes:logstash\\:\\:forwarder") # ~FC010
71 forwarders.sort_by { |n| n[:fqdn] }.each do |forwarder|
72 forwarder.interfaces(:role => :external) do |interface|
73 firewall_rule "accept-lumberjack-#{forwarder}" do
75 family interface[:family]
76 source "#{interface[:zone]}:#{interface[:address]}"
85 gateways = search(:node, "roles:gateway") # ~FC010
87 gateways.sort_by { |n| n[:fqdn] }.each do |gateway|
88 gateway.interfaces(:role => :external) do |interface|
89 firewall_rule "accept-lumberjack-#{gateway}" do
91 family interface[:family]
92 source "#{interface[:zone]}:#{interface[:address]}"