Skip to content

Instantly share code, notes, and snippets.

@raphink
Created July 6, 2018 11:56
Show Gist options
  • Save raphink/aa5ad8a853ce8cf4fd2021e9b1f60901 to your computer and use it in GitHub Desktop.
Save raphink/aa5ad8a853ce8cf4fd2021e9b1f60901 to your computer and use it in GitHub Desktop.
class hosts {
$hosts = query_facts('Class[Settings]', ['fqdn', 'ipaddress', 'hostname'])
create_resources('hosts::host', $hosts)
}
define hosts::host (
$fqdn,
$ipaddress,
$hostname,
) {
host { $fqdn:
ip => $ipaddress,
host_aliases => $hostname,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment