]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blame - modules/base_installation/manifests/params.pp
Move data to hiera
[perso/Immae/Projets/Puppet.git] / modules / base_installation / manifests / params.pp
CommitLineData
7fed35a4
IB
1class base_installation::params {
2 $puppet_code_path = "/etc/puppetlabs/code"
3 $grub_device = "/dev/sda"
0b62a18b
IB
4 $system_hostname = "example.com"
5 $system_locales = ["en_US.UTF-8"]
6 $system_timezone = "UTC"
7fed35a4
IB
7 $system_users = [
8 {
9 userid => 1000,
0b62a18b
IB
10 username => "example",
11 groups => ["sudo"],
7fed35a4
IB
12 keys => [
13 {
0b62a18b
IB
14 host => "local.example.com",
15 key => "AAAAB3",
7fed35a4
IB
16 key_type => "ssh-rsa"
17 }
18 ]
19 }
20 ]
21}