summaryrefslogtreecommitdiff
path: root/manifests/virtual/http.pp
blob: efd3dca393c7b8c7e01d98ff0df63d6969b30b7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class firewall::virtual::http($destination) {
  shorewall::rule { 'http-route-1':
    action          => 'DNAT',
    source          => 'vm',
    destination     => "fw:$destination:80",
    proto           => 'tcp',
    destinationport => '80',
    originaldest    => hiera('firewall::external_ip', $::ipaddress),
    ratelimit       => '-',
    order           => 600,
  }

  shorewall::rule { 'http-route-2':
    action          => 'DNAT',
    source          => 'net',
    destination     => "vm:$destination:80",
    proto           => 'tcp',
    destinationport => '80',
    originaldest    => hiera('firewall::external_ip', $::ipaddress),
    ratelimit       => '-',
    order           => 601,
  }
}