2014-12-22 23:01:35 -06:00
|
|
|
---
|
|
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
|
|
title: Ansible plugin manifest
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
plugins:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
ansible:
|
|
|
|
type: object
|
|
|
|
properties:
|
2017-07-26 14:09:55 +02:00
|
|
|
extra_vars:
|
|
|
|
type: object
|
|
|
|
minItems: 1
|
2017-07-14 19:23:14 +02:00
|
|
|
tags:
|
|
|
|
type: array
|
2017-07-26 14:09:55 +02:00
|
|
|
items: {type: string}
|
2017-07-14 19:23:14 +02:00
|
|
|
minItems: 1
|
|
|
|
skip_tags:
|
|
|
|
type: array
|
2017-07-26 14:09:55 +02:00
|
|
|
items: {type: string}
|
2017-07-14 19:23:14 +02:00
|
|
|
minItems: 1
|
2014-12-22 23:01:35 -06:00
|
|
|
opt_flags:
|
|
|
|
type: array
|
2017-07-26 14:09:55 +02:00
|
|
|
items: {type: string}
|
2014-12-22 23:01:35 -06:00
|
|
|
minItems: 1
|
2017-07-14 19:46:35 +02:00
|
|
|
groups:
|
2014-12-22 23:01:35 -06:00
|
|
|
type: array
|
|
|
|
host: {type: string}
|
|
|
|
minItems: 1
|
2017-07-14 18:26:25 +02:00
|
|
|
playbook:
|
|
|
|
type: string
|
|
|
|
pattern: ^[^\0]+$
|
2015-05-02 12:45:55 +02:00
|
|
|
required: [playbook]
|
|
|
|
additionalProperties: false
|