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

18 lines
305 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "EC2 manifest for instance store AMIs",
"type": "object",
"properties": {
"image": {
"type": "object",
"properties": {
"bucket": {
"type": "string"
}
},
"required": ["bucket"]
}
},
"required": ["image"]
}