Puppet Class: beats::protocols::dns

Defined in:
manifests/protocols/dns.pp

Overview

DNS

Parameters:

  • ports (Any) (defaults to: ['53'])


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

class beats::protocols::dns (
  $ports    = ['53']
) {
  concat::fragment {'protocols-dns':
    target  => '/etc/packetbeat/packetbeat.yml',
    content => template('beats/protocols/protocols.dns.erb'),
    order   => 14,
  }
}