2016-06-02 16:05:36 -07:00
|
|
|
---
|
|
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
|
|
title: EC2-publish plugin manifest
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
plugins:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
ec2_publish:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
regions:
|
|
|
|
type: array
|
|
|
|
items: {$ref: '#/definitions/aws-region'}
|
|
|
|
uniqueItems: true
|
|
|
|
manifest_url: {type: string}
|
|
|
|
public: {type: boolean}
|
|
|
|
additionalProperties: false
|
|
|
|
definitions:
|
|
|
|
aws-region:
|
|
|
|
enum:
|
|
|
|
- ap-northeast-1
|
|
|
|
- ap-northeast-2
|
|
|
|
- ap-southeast-1
|
|
|
|
- ap-southeast-2
|
2016-12-08 17:24:45 -08:00
|
|
|
- ca-central-1
|
2016-06-02 16:05:36 -07:00
|
|
|
- eu-central-1
|
|
|
|
- eu-west-1
|
|
|
|
- sa-east-1
|
|
|
|
- us-east-1
|
|
|
|
- us-gov-west-1
|
|
|
|
- us-west-1
|
|
|
|
- us-west-2
|
2016-12-08 17:24:45 -08:00
|
|
|
- cn-north-1
|