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

51 lines
884 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": {
"description": {
"type": "string"
}
}
},
"credentials": {
"type": "object",
"properties": {
"access-key": {
"type": "string"
},
"secret-key": {
"type": "string"
}
}
},
2014-01-19 15:57:54 +01:00
"system": {
"type": "object",
"properties": {
"bootloader": {
"type": "string",
"enum": ["pvgrub", "extlinux"]
}
}
},
"volume": {
"type": "object",
"properties": {
2013-11-06 22:33:18 +01:00
"backing": { "enum": ["ebs", "s3"] },
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "msdos", "gpt"] }
2013-11-06 22:33:18 +01:00
}
}
},
"required": ["backing"]
}
},
"required": ["image"]
}