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