2013-07-13 15:10:04 +02:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "EC2 manifest for instance store AMIs",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2013-07-14 23:16:37 +02:00
|
|
|
"credentials": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"certificate": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"private-key": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"user-id": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2013-07-13 15:10:04 +02:00
|
|
|
"image": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"bucket": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["bucket"]
|
2013-10-29 22:41:29 +01:00
|
|
|
},
|
|
|
|
"volume": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"partitions": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"type": { "enum": ["none"] }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-13 15:10:04 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["image"]
|
|
|
|
}
|