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

38 lines
601 B
JSON
Raw Normal View History

{
2013-06-23 23:37:21 +02:00
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "EC2 manifest",
"type": "object",
"properties": {
"image": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
}
}
},
"credentials": {
"type": "object",
"properties": {
"access-key": {
"type": "string"
},
"secret-key": {
"type": "string"
}
}
},
"volume": {
"type": "object",
"properties": {
"backing": { "enum": ["ebs", "s3"] }
},
"required": ["backing"]
}
},
"required": ["image"]
}