mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
31 lines
519 B
JSON
31 lines
519 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "EC2 manifest for instance store AMIs",
|
|
"type": "object",
|
|
"properties": {
|
|
"credentials": {
|
|
"type": "object",
|
|
"properties": {
|
|
"certificate": {
|
|
"type": "string"
|
|
},
|
|
"private-key": {
|
|
"type": "string"
|
|
},
|
|
"user-id": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"image": {
|
|
"type": "object",
|
|
"properties": {
|
|
"bucket": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["bucket"]
|
|
}
|
|
},
|
|
"required": ["image"]
|
|
}
|