summaryrefslogtreecommitdiff
path: root/manifests/virtual/https.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-09-11 21:56:50 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-09-11 21:56:50 -0300
commit14ced49d32beab8b80c6499b3a02ed1523ab98ae (patch)
tree22cdf03d732e91e502c5124e9f649d1c972488ce /manifests/virtual/https.pp
parent279c52185ec96cd1f8b0c25a1a14b0e537c1c11a (diff)
downloadpuppet-firewall-14ced49d32beab8b80c6499b3a02ed1523ab98ae.tar.gz
puppet-firewall-14ced49d32beab8b80c6499b3a02ed1523ab98ae.tar.bz2
Use firewall::virtual class names
Diffstat (limited to 'manifests/virtual/https.pp')
-rw-r--r--manifests/virtual/https.pp22
1 files changed, 22 insertions, 0 deletions
diff --git a/manifests/virtual/https.pp b/manifests/virtual/https.pp
new file mode 100644
index 0000000..ea900d8
--- /dev/null
+++ b/manifests/virtual/https.pp
@@ -0,0 +1,22 @@
+class firewall::virtual::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,
+ }
+}