module-icinga2/manifests/object/host.pp

56 lines
1.3 KiB
ObjectPascal
Raw Normal View History

# == Defined type: icinga2::object::host
#
# This defined type
#
# === Parameters
#
# See the inline comments.
#
define icinga2::object::host (
$object_hostname = $name,
$display_name = $fqdn,
$ipv4_address = $ipaddress_eth0,
$ipv6_address = undef,
$template_to_import = 'generic-host',
$groups = [],
$vars = {},
$check_command = undef,
$max_check_attempts = undef,
$check_period = undef,
$check_interval = undef,
$retry_interval = undef,
$enable_notifications = undef,
$enable_active_checks = undef,
$enable_passive_checks = undef,
$enable_event_handler = undef,
$enable_flap_detection = undef,
$enable_perfdata = undef,
$event_command = undef,
#flapping_threshold is defined as a percentage, eg. 10%, 50%, etc.
$flapping_threshold = undef,
$volatile = undef,
$notes = undef,
# Parameters that still need to be included:
# notes_url
# action_url
# icon_image
# icon_image_alt
$target_dir = '/etc/icinga2/conf.d',
$target_file_name = "${fqdn}.conf",
$target_file_owner = 'root',
$target_file_group = 'root',
$target_file_mode = '644'
) {
file {"${target_dir}/${target_file_name}":
ensure => file,
owner => $target_file_owner,
group => $target_file_group,
mode => $target_file_mode,
content => template('icinga2/object_host.conf.erb'),
notify => Service['icinga2'],
}
}