forked from andsens/bootstrap-vz
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest-schema.yml
51 lines (51 loc) · 982 Bytes
/
manifest-schema.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
$schema: http://json-schema.org/draft-04/schema#
title: EC2 manifest
type: object
properties:
tags:
type: object
minProperties: 1
provider:
type: object
properties:
description: {type: string}
credentials:
type: object
properties:
access-key: {type: string}
secret-key: {type: string}
virtualization:
enum:
- pvm
- hvm
enhanced_networking:
enum:
- none
- simple
required: [description, virtualization]
system:
type: object
properties:
bootloader:
type: string
enum:
- pvgrub
- grub
- extlinux
volume:
type: object
properties:
backing:
enum:
- ebs
- s3
partitions:
type: object
properties:
type:
enum:
- none
- msdos
- gpt
required: [backing]