Defined Type: ansible::hosts
- Defined in:
- manifests/hosts.pp
Overview
22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'manifests/hosts.pp', line 22
define ansible::hosts (
Array[String] $entrys,
) {
concat::fragment { $title:
target => "${ansible::confdir}/hosts",
content => epp('ansible/hosts.epp',
{
section => $title,
entrys => $entrys,
}),
}
}
|