Defined Type: beats::protocols

Defined in:
manifests/protocols.pp

Overview

Define::beats::protocols Sets up protocols. I think it’s redundant…?

Parameters:

  • protocol (Any)
  • ports (Any)


3
4
5
6
7
8
9
10
# File 'manifests/protocols.pp', line 3

define beats::protocols($protocol,$ports)
{
  concat::fragment {"protocols-${protocol}":
    target  => '/etc/beats/beats.conf',
    content => template('beats/protocols.conf.erb'),
    order   => 20,
  }
}