summaryrefslogtreecommitdiff
path: root/manifests/virtual/https.pp
blob: 36e0c9f7169dc89f630e694975e90fe94bbf7dc3 (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    => hiera('firewall::external_ip', $::ipaddress),
    ratelimit       => hiera("firewall::ssl_ratelimit", '-'),
    order           => 602,
  }

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