summaryrefslogtreecommitdiff
path: root/manifests/virtual/https.pp
blob: 70a10a46deb00b17ebe67d221a1b62acb202599f (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::https($destination) {
  shorewall::rule { 'https-route-1':
    action          => 'DNAT',
    source          => 'vm',
    destination     => "fw:$destination:443",
    proto           => 'tcp',
    destinationport => '443',
    originaldest    => lookup('firewall::external_ip', undef, undef, $::ipaddress),
    ratelimit       => lookup("firewall::ssl_ratelimit", undef, undef, '-'),
    order           => 602,
  }

  shorewall::rule { 'https-route-2':
    action          => 'DNAT',
    source          => 'net',
    destination     => "vm:$destination:443",
    proto           => 'tcp',
    destinationport => '443',
    originaldest    => lookup('firewall::external_ip', undef, undef, $::ipaddress),
    ratelimit       => lookup("firewall::ssl_ratelimit", undef, undef, '-'),
    order           => 602,
  }
}