blob: 6bc2eb3d25de0f68e448d0a8c2a929e45714a57b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class role::all_in_one_pe {
$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,
}
class { 'profile::zack_r10k_webhook' :
username => $webhook_username,
password => $webhook_password,
}
}
|