Puppet Class: hosts::dynamic
- Defined in:
- manifests/dynamic.pp
Overview
Class hosts::dynamic
A class to automatically add a new entry in the hosts file for each new server managed by Puppet (Options to filter and manage which hosts are available)
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'manifests/dynamic.pp', line 7
class hosts::dynamic {
$magic_tag = get_magicvar($hosts::dynamic_magicvar)
$real_tag = $hosts::bool_dynamic_exclude ? {
true => 'Excluded',
default => "env-${magic_tag}",
}
@@host { $::fqdn:
ip => $hosts::dynamic_ip,
host_aliases => $hosts::dynamic_alias,
tag => $real_tag,
}
Host <<| tag == "env-${magic_tag}" |>> {
ensure => present,
require => File['hosts.conf'],
}
}
|