summaryrefslogtreecommitdiff
path: root/manifests/vm/https.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/vm/https.pp')
-rw-r--r--manifests/vm/https.pp22
1 files changed, 0 insertions, 22 deletions
diff --git a/manifests/vm/https.pp b/manifests/vm/https.pp
deleted file mode 100644
index 047ff66..0000000
--- a/manifests/vm/https.pp
+++ /dev/null
@@ -1,22 +0,0 @@
-class firewall::vm::https($destination, $zone = 'vm') {
- shorewall::rule { 'https-route-1':
- action => 'DNAT',
- source => 'net',
- destination => "$zone:$destination:443",
- proto => 'tcp',
- destinationport => '443',
- ratelimit => hiera("firewall::ssl_ratelimit", '-'),
- order => 602,
- }
-
- shorewall::rule { 'https-route-2':
- action => 'DNAT',
- source => '$FW',
- destination => "fw:$destination:443",
- proto => 'tcp',
- destinationport => '443',
- originaldest => hiera('firewall::external_ip', $::ipaddress),
- ratelimit => hiera("firewall::ssl_ratelimit", '-'),
- order => 602,
- }
-}