mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
30 lines
606 B
YAML
30 lines
606 B
YAML
---
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
title: Vagrant plugin manifest
|
|
type: object
|
|
properties:
|
|
provider:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
enum: [virtualbox, kvm]
|
|
system:
|
|
required: [hostname]
|
|
volume:
|
|
type: object
|
|
properties:
|
|
backing:
|
|
type: string
|
|
enum: [vmdk, qcow2]
|
|
required: [backing]
|
|
plugins:
|
|
type: object
|
|
properties:
|
|
vagrant:
|
|
type: object
|
|
properties:
|
|
provider:
|
|
type: string
|
|
enum: [virtualbox, libvirt]
|
|
additionalProperties: false
|