2013-06-23 12:00:17 +02:00
|
|
|
{
|
2013-06-23 23:37:21 +02:00
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
2013-06-23 12:00:17 +02:00
|
|
|
"title": "EC2 manifest",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2013-07-14 23:16:37 +02:00
|
|
|
"credentials": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"access-key": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"secret-key": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2013-06-23 12:00:17 +02:00
|
|
|
"volume": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"backing": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["ebs", "s3"]
|
2013-06-27 00:11:09 +02:00
|
|
|
},
|
|
|
|
"filesystem": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["ext2", "ext3", "ext4", "xfs"]
|
2013-06-23 12:00:17 +02:00
|
|
|
}
|
|
|
|
},
|
2013-06-27 00:11:09 +02:00
|
|
|
"required": ["backing", "filesystem"]
|
2013-06-23 12:00:17 +02:00
|
|
|
}
|
|
|
|
},
|
2013-06-27 21:31:52 +02:00
|
|
|
"required": ["volume"]
|
2013-06-23 12:00:17 +02:00
|
|
|
}
|