blob: 9cedf4782183e0fda9246de2d00e2f292cfb536b (
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
|
---
version: 5
defaults:
datadir: data
data_hash: yaml_data
hierarchy:
# FIXME: those informations should be taken in LDAP, but bootstrap
# problem for the hostname
- name: "Per-named-node data"
mapped_paths: [ldapvar.self.cn, hostname, "named_nodes/%{hostname}.yaml"]
- name: "Per-node data"
path: "nodes/%{facts.ec2_metadata.hostname}.yaml"
### /FIXME
- name: "Initialization variables"
path: "/root/puppet_variables.json"
- name: "Per-role data"
mapped_paths: [ldapvar.self.vars.roles, role, "roles/%{role}.yaml"]
- name: "Per-type data"
path: "types/%{facts.ec2_metadata.instance-type}.yaml"
- name: "Common data"
path: "common.yaml"
|