diff options
Diffstat (limited to 'hiera/bootstrap.yaml')
-rw-r--r-- | hiera/bootstrap.yaml | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/hiera/bootstrap.yaml b/hiera/bootstrap.yaml index e189b51..2353846 100644 --- a/hiera/bootstrap.yaml +++ b/hiera/bootstrap.yaml @@ -1,12 +1,28 @@ --- # -# Boostrap +# Puppet Bootstrap Configuration Parameters. +# +# This file is responsible to set custom values to your new puppet repository +# to reflect the custom configuration for your infrastructure. +# +# This configuration is useful mostly after you cloned the puppet-boostrap module +# and want to configure it to boostrap a whole puppetmaster infrastructure. +# + +# The base domain for your infrastructure. +bootstrap::base_domain: 'vagrantup.com' + +# +# Root password. +# +# Use "mkpasswd -m sha-512" to generate root and first user's passwords. +bootstrap::root::password: '' + +# +# First user account # -# Use "mkpasswd -m sha-512" to generate root and first user's passwords # Do not include "ssh-rsa " into the sshkey definition. -bootstrap::base_domain: 'vagrantup.com' -bootstrap::root::password: '' -bootstrap::first_user: 'user' +bootstrap::first_user: '' bootstrap::first_user::password: '' bootstrap::first_user::sshkey: '' bootstrap::first_user::email: '' |