2014-07-05 20:01:20 +02:00
|
|
|
---
|
|
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
|
|
title: EC2 manifest
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
provider:
|
|
|
|
type: object
|
|
|
|
properties:
|
2015-12-13 14:54:06 +01:00
|
|
|
description: {type: string}
|
2014-07-05 20:01:20 +02:00
|
|
|
credentials:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
access-key: {type: string}
|
|
|
|
secret-key: {type: string}
|
|
|
|
virtualization:
|
|
|
|
enum:
|
|
|
|
- pvm
|
|
|
|
- hvm
|
2014-11-29 13:46:57 -08:00
|
|
|
enhanced_networking:
|
|
|
|
enum:
|
|
|
|
- none
|
|
|
|
- simple
|
2014-07-05 20:01:20 +02:00
|
|
|
required: [virtualization]
|
|
|
|
system:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
bootloader:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- pvgrub
|
2015-04-08 23:16:22 +02:00
|
|
|
- grub
|
2014-07-05 20:01:20 +02:00
|
|
|
- extlinux
|
|
|
|
volume:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
backing:
|
|
|
|
enum:
|
|
|
|
- ebs
|
|
|
|
- s3
|
|
|
|
partitions:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
type:
|
|
|
|
enum:
|
|
|
|
- none
|
|
|
|
- msdos
|
|
|
|
- gpt
|
|
|
|
required: [backing]
|
|
|
|
required: [image]
|