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

45 lines
769 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": {
2013-12-01 23:50:32 +01:00
"virtualization": { "enum": ["pvm", "hvm"] },
"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": {
2013-11-06 22:33:18 +01:00
"backing": { "enum": ["ebs", "s3"] },
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "mbr"] }
}
}
},
"required": ["backing"]
}
},
"required": ["image"]
}