summaryrefslogtreecommitdiff
path: root/manifests/router/https.pp
blob: d6837614546f153d5974a51abab8f64f2b5b02af (plain)
1
2
3
4
5
6
7
8
9
10
class firewall::router::https(
  $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
  $destination, $zone = 'loc', $originaldest = $ipaddress
) {
  class { "firewall::implementations::${implementation}::router::https":
    destination  => $destination,
    zone         => $zone,
    originaldest => $originaldest,
  }
}