summaryrefslogtreecommitdiff
path: root/manifests/virtual/https.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/virtual/https.pp')
-rw-r--r--manifests/virtual/https.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/virtual/https.pp b/manifests/virtual/https.pp
index 36e0c9f..70a10a4 100644
--- a/manifests/virtual/https.pp
+++ b/manifests/virtual/https.pp
@@ -5,8 +5,8 @@ class firewall::virtual::https($destination) {
destination => "fw:$destination:443",
proto => 'tcp',
destinationport => '443',
- originaldest => hiera('firewall::external_ip', $::ipaddress),
- ratelimit => hiera("firewall::ssl_ratelimit", '-'),
+ originaldest => lookup('firewall::external_ip', undef, undef, $::ipaddress),
+ ratelimit => lookup("firewall::ssl_ratelimit", undef, undef, '-'),
order => 602,
}
@@ -16,8 +16,8 @@ class firewall::virtual::https($destination) {
destination => "vm:$destination:443",
proto => 'tcp',
destinationport => '443',
- originaldest => hiera('firewall::external_ip', $::ipaddress),
- ratelimit => hiera("firewall::ssl_ratelimit", '-'),
+ originaldest => lookup('firewall::external_ip', undef, undef, $::ipaddress),
+ ratelimit => lookup("firewall::ssl_ratelimit", undef, undef, '-'),
order => 602,
}
}