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, } }