mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 23:36:29 +00:00
44 lines
844 B
JSON
44 lines
844 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "cloud-init plugin manifest",
|
|
"type": "object",
|
|
"properties": {
|
|
"system": {
|
|
"type": "object",
|
|
"properties": {
|
|
"release": {
|
|
"type": "string",
|
|
"enum": ["wheezy", "stable",
|
|
"jessie", "testing",
|
|
"sid", "unstable"]
|
|
}
|
|
}
|
|
},
|
|
"plugins": {
|
|
"type": "object",
|
|
"properties": {
|
|
"cloud_init": {
|
|
"type": "object",
|
|
"properties": {
|
|
"username": {
|
|
"type": "string"
|
|
},
|
|
"disable_modules": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"uniqueItems": true
|
|
},
|
|
"metadata_sources": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["username"]
|
|
},
|
|
"packages": {"type": "object"}
|
|
},
|
|
"required": ["cloud_init"]
|
|
}
|
|
}
|
|
}
|