Puppet Class: nftables::rules::out::icinga2
- Defined in:
- manifests/rules/out/icinga2.pp
Summary
allow outgoing icinga2Overview
| 3 4 5 6 7 8 9 10 | # File 'manifests/rules/out/icinga2.pp', line 3
class nftables::rules::out::icinga2 (
  Array[Stdlib::Port,1] $ports = [5665],
) {
  nftables::rule {
    'default_out-icinga2':
      content => "tcp dport {${join($ports,', ')}} accept",
  }
} |