mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
25 lines
587 B
YAML
25 lines
587 B
YAML
---
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
title: Saltstack plugin manifest
|
|
type: object
|
|
properties:
|
|
plugins:
|
|
type: object
|
|
properties:
|
|
salt:
|
|
type: object
|
|
properties:
|
|
grains:
|
|
type: object
|
|
patternProperties:
|
|
^[^/\0]+$: {type: string}
|
|
minItems: 1
|
|
install_source:
|
|
enum:
|
|
- stable
|
|
- daily
|
|
- git
|
|
master: {type: string}
|
|
version: {type: string}
|
|
required: [install_source]
|
|
additionalProperties: false
|