-
Notifications
You must be signed in to change notification settings - Fork 0
/
puppet.json.example
54 lines (54 loc) · 1.2 KB
/
puppet.json.example
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"puppet": {
":puppet_server": "puppet.example.com",
":domain": "example.com",
":environment": "development",
":box": "puppetlabs/ubuntu-12.04-64-puppet",
":node_box": "puppetlabs/ubuntu-14.04-64-puppet",
":ip": "172.0.0.2",
":memory": 512,
":cores": 1,
":repo_script": "shell/repos.sh",
":shell_provision_script": "shell/puppetmaster.sh",
":box_shell_provision_script": "shell/agent.sh",
":hiera_config_path": "puppet/hiera.yaml",
":manifests_path": "puppet/manifests",
":manifest_file": "site.pp",
":module_path": [
"./puppet"
],
":puppet_options": [
"--verbose",
"--show_diff",
"--environment=development"
],
":facter": {
"fact_1": "test_1",
"fact_2": "test_2"
},
":synced_folders": [
{
":host": "../hieradata",
":guest": "/vagrant_hieradata",
":id": "hiera"
},
{
":host": "../r10k_env",
":guest": "/vagrant_r10k_env",
":id": "r10k"
}
],
":ports": [
{
":host": 10080,
":guest": 80,
":id": "web"
},
{
":host": 5000,
":guest": 5000,
":id": "pboard"
}
]
}
}