]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/base_installation/manifests/params.pp
5ade838ae0b70430a9ad2b9a6ea2428dcfb86ad0
[perso/Immae/Projets/Puppet.git] / modules / base_installation / manifests / params.pp
1 class base_installation::params {
2 $puppet_code_path = "/etc/puppetlabs/code"
3 $puppet_conf_path = "/etc/puppetlabs/puppet"
4 $puppet_pass_seed = "/etc/puppetlabs/puppet/password_seed"
5 $puppet_ssl_path = "/etc/puppetlabs/ssl"
6 $grub_device = "/dev/sda"
7 $ldap_base = "dc=example,dc=com"
8 $ldap_cn = "node"
9 $ldap_dn = "cn=node,ou=hosts,dc=example,dc=com"
10 $ldap_cert_path = "/etc/ssl/certs/ca-certificates.crt"
11 $ldap_uri = "ldaps://ldap.example.com"
12 $ldap_server = "ldap.example.com"
13 $real_hostname = "example.com"
14 $system_hostname = "example.com"
15 $system_locales = ["en_US.UTF-8"]
16 $system_timezone = "UTC"
17 $system_users = [
18 {
19 userid => 1000,
20 username => "example",
21 groups => ["sudo"],
22 keys => [
23 {
24 host => "local.example.com",
25 key => "AAAAB3",
26 key_type => "ssh-rsa"
27 }
28 ]
29 }
30 ]
31 }