forked from crowbar-archive/barclamp-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattributes.schema
29 lines (29 loc) · 951 Bytes
/
attributes.schema
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
{
"type": "map",
"required": true,
"mapping": {
"chef": {
"type": "map",
"required": true,
"mapping": {
"servers": {
"type": "map",
"required": true,
"mapping": {
= : {
"type": "map",
"required": true,
"mapping": {
"server_url" : { "type": "str" },
"client_name" : { "type": "str" },
"client_key" : { "type": "str" },
"description" : { "type": "str" },
"order" : { "type": int }
}
}
}
}
}
}
}
}