bootstrap-vz/plugins/cloud_init/manifest-schema.json
Anders Ingemann 2320b2cb74 cloud-init plugin implemented.
There is no need for the sed plugin any longer
2013-12-14 23:18:40 +01:00

23 lines
443 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "cloud-init plugin manifest",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"cloud_init": {
"type": "object",
"properties": {
"username": {
"type": "string"
}
},
"required": ["username"]
},
"packages": {"type": "object"}
},
"required": ["cloud_init", "packages"]
}
}
}