Displaying 1 result from an estimated 1 matches for "big_secret".
2007 Apr 20
4
passwords only on client nodes
I''d like to generate config files containing passwords. One (obvious)
way to do this would be:
$password = ''big_secret''
file {
''/the/config.file'':
content => template(''config.file.erb'');
}
# config.file.erb has a `password = <%= password %>` line
The problem with this is, that I''d have to store the password on the
puppetmaster. I...