bootstrap-vz/providers/ec2/manifest-schema.json

21 lines
319 B
JSON
Raw Normal View History

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