2013-12-01 12:26:09 +01:00
|
|
|
{
|
|
|
|
"$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"
|
2013-12-17 15:51:03 +00:00
|
|
|
},
|
2013-12-19 11:44:34 +00:00
|
|
|
"disable_modules": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"uniqueItems": true
|
|
|
|
},
|
2013-12-17 15:51:03 +00:00
|
|
|
"metadata_sources": {
|
|
|
|
"type": "string"
|
2013-12-01 12:26:09 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["username"]
|
|
|
|
},
|
|
|
|
"packages": {"type": "object"}
|
|
|
|
},
|
|
|
|
"required": ["cloud_init", "packages"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|