bootstrap-vz/providers/ec2/manifest-schema.json
2013-07-08 23:13:58 +02:00

20 lines
319 B
JSON

{
"title": "EC2 manifest",
"type": "object",
"properties": {
"bootstrapdir": {
"type": "string"
},
"volume": {
"type": "object",
"properties": {
"backing": {
"type": "string",
"enum": ["ebs", "s3"]
}
},
"required": ["backing"]
}
},
"required": ["bootstrapdir", "volume"]
}