bootstrap-vz/bootstrapvz/plugins/salt/manifest-schema.json
Anders Ingemann b03ec12c41 Make "stable" the salt install_source default.
Fix a few indentation things
2014-05-16 18:30:01 +02:00

28 lines
606 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Saltstack plugin manifest",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"salt": {
"type": "object",
"properties": {
"master": { "type": "string" },
"install_source": { "enum": ["stable", "daily", "git"] },
"version": { "type": "string" },
"grains": {
"type": "object",
"patternProperties": {
"^[^\/\\0]+$": { "type": "string" }
},
"minItems": 1
}
},
"required": ["install_source"]
}
}
}
}
}