2015-08-13 21:10:29 +00:00
|
|
|
class role::all_in_one_pe {
|
|
|
|
|
2015-10-30 20:04:42 +00:00
|
|
|
$webhook_username = hiera('webhook_username', fqdn_rand_string(10, '', 'username'))
|
|
|
|
$webhook_password = hiera('webhook_password', fqdn_rand_string(20, '', 'password'))
|
|
|
|
|
|
|
|
class { 'profile::puppetmaster' :
|
|
|
|
webhook_username => $webhook_username,
|
|
|
|
webhook_password => $webhook_password,
|
|
|
|
}
|
|
|
|
|
2015-10-30 20:42:33 +00:00
|
|
|
class { 'profile::zack_r10k_webhook' :
|
2015-10-30 20:04:42 +00:00
|
|
|
username => $webhook_username,
|
|
|
|
password => $webhook_password,
|
|
|
|
}
|
2015-08-13 21:10:29 +00:00
|
|
|
|
|
|
|
}
|