2013-06-23 12:00:17 +02:00
|
|
|
{
|
2013-06-23 23:37:21 +02:00
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
2013-06-23 12:00:17 +02:00
|
|
|
"title": "EC2 manifest",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2013-10-29 22:41:29 +01:00
|
|
|
"image": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2013-07-14 23:16:37 +02:00
|
|
|
"credentials": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"access-key": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"secret-key": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2013-06-23 12:00:17 +02:00
|
|
|
"volume": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2013-11-06 22:33:18 +01:00
|
|
|
"backing": { "enum": ["ebs", "s3"] },
|
|
|
|
"partitions": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"type": { "enum": ["none", "mbr"] }
|
|
|
|
}
|
|
|
|
}
|
2013-06-23 12:00:17 +02:00
|
|
|
},
|
2013-10-09 00:09:34 +02:00
|
|
|
"required": ["backing"]
|
2013-06-23 12:00:17 +02:00
|
|
|
}
|
|
|
|
},
|
2013-10-29 22:41:29 +01:00
|
|
|
"required": ["image"]
|
2013-06-23 12:00:17 +02:00
|
|
|
}
|