Puppet Class: psick::aws::puppet
- Defined in:
- manifests/aws/puppet.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/aws/puppet.pp', line 2
class psick::aws::puppet (
String $ensure = 'present',
String $region = $::psick::aws::region,
Array $install_modules = [ 'puppetlabs/aws' , 'example42/psick' ],
String $module_user = 'root',
) {
$install_modules.each | $mod | {
psick::puppet::module { $mod:
user => $module_user,
}
}
}
|