forked from andsens/bootstrap-vz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest-schema.yml
More file actions
57 lines (57 loc) · 1.14 KB
/
manifest-schema.yml
File metadata and controls
57 lines (57 loc) · 1.14 KB
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
52
53
54
55
56
57
---
$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}
profile: {type: string}
credentials:
type: object
properties:
access-key: {type: string}
secret-key: {type: string}
virtualization:
enum:
- pvm
- hvm
enhanced_networking:
enum:
- none
- simple
amzn-driver-version:
type: string
pattern: "^([0-9]+\\.?){3}$"
encrypted: { type: boolean }
kms_key_id: { type: string }
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]