mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 23:36:29 +00:00
50 lines
877 B
JSON
50 lines
877 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"
|
|
}
|
|
}
|
|
},
|
|
"system": {
|
|
"type": "object",
|
|
"properties": {
|
|
"bootloader": {
|
|
"type": "string",
|
|
"enum": ["pvgrub", "extlinux"]
|
|
}
|
|
}
|
|
},
|
|
"volume": {
|
|
"type": "object",
|
|
"properties": {
|
|
"backing": { "enum": ["ebs", "s3"] },
|
|
"partitions": {
|
|
"type": "object",
|
|
"properties": {
|
|
"type": { "enum": ["none", "msdos"] }
|
|
}
|
|
}
|
|
},
|
|
"required": ["backing"]
|
|
}
|
|
},
|
|
"required": ["image"]
|
|
}
|