allow nagios hosts on 444

This commit is contained in:
Maria Haider 2023-05-08 17:49:50 +02:00
parent 0a83101fc0
commit f5310ba23f
Signed by: mariah
GPG key ID: 7414A760CA747E57

View file

@ -118,9 +118,9 @@ class webserver($enabled=true) {
}
class servicemonitor {
$nagios_ip_v4 = join(hiera('nagios_ip_v4')," ");
ufw::allow { "allow-servicemonitor-from-nagios":
ip => $nagios_ip_v4,
$nagios_ip_v4 = hiera_array('nagios_ip_v4',[]);
sunet::misc::ufw_allow { "allow-servicemonitor-from-nagios":
from => $nagios_ip_v4,
port => '444',
}
}