Puppet Class: zabbix::resources::proxy
- Defined in:
- manifests/resources/proxy.pp
Overview
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'manifests/resources/proxy.pp', line 15
class zabbix::resources::proxy (
$hostname = undef,
$ipaddress = undef,
$use_ip = undef,
$mode = undef,
$port = undef,
$templates = undef,
) {
@@zabbix_proxy { $hostname:
ipaddress => $ipaddress,
use_ip => $use_ip,
mode => $mode,
port => $port,
templates => $templates,
}
}
|