diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2020-05-07 21:06:40 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2020-05-07 21:06:40 -0300 |
commit | 8c2babfd529b4c1e0d3844afc08b728a05f61caa (patch) | |
tree | 8f44d74d79fa2f0aa62f1987d0197cb1aaa706a7 /manifests/redirect.pp | |
parent | e06d326f0be9f69bf4fa3b695f898c1cb9c5b200 (diff) | |
download | puppet-firewall-8c2babfd529b4c1e0d3844afc08b728a05f61caa.tar.gz puppet-firewall-8c2babfd529b4c1e0d3844afc08b728a05f61caa.tar.bz2 |
Hiera 5 migration
Diffstat (limited to 'manifests/redirect.pp')
-rw-r--r-- | manifests/redirect.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/redirect.pp b/manifests/redirect.pp index d3785a1..dee9a98 100644 --- a/manifests/redirect.pp +++ b/manifests/redirect.pp @@ -2,7 +2,7 @@ class firewall::redirect::ssh($destinationport) { # When the box is in an internal network and we want to provide # and external access through a shared real IP, we have to # redirect requests coming from another port to port 22. - $ip = hiera('firewall::external_ip', $::ipaddress) + $ip = lookup('firewall::external_ip', undef, undef, $::ipaddress) shorewall::rule { "ssh-redirect-1": action => 'DNAT', |