bootstrap-vz/providers/ec2/manifest-schema.json
Anders Ingemann 889812b1ad Rename MBR partition table to MSDOS
Calling it MBR is just confusing
2014-01-18 23:27:52 +01:00

41 lines
728 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "EC2 manifest",
"type": "object",
"properties": {
"virtualization": { "enum": ["pvm", "hvm"] },
"image": {
"type": "object",
"properties": {
"description": {
"type": "string"
}
}
},
"credentials": {
"type": "object",
"properties": {
"access-key": {
"type": "string"
},
"secret-key": {
"type": "string"
}
}
},
"volume": {
"type": "object",
"properties": {
"backing": { "enum": ["ebs", "s3"] },
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "msdos"] }
}
}
},
"required": ["backing"]
}
},
"required": ["image"]
}