Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / manifests / rules / out / icinga2.pp @ master

Historique | Voir | Annoter | Télécharger (258 octets)

1 ee93f2de Simon Hoenscheid
# @summary allow outgoing icinga2
2
# @param ports icinga2 ports
3
class nftables::rules::out::icinga2 (
4
  Array[Stdlib::Port,1] $ports = [5665],
5
) {
6
  nftables::rule {
7
    'default_out-icinga2':
8
      content => "tcp dport {${join($ports,', ')}} accept",
9
  }
10
}