mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00

* added ssh_key parameter to the manifest to connect with (have to be present in AWS) * added readme * changed instance type to something what can run outside VPC (m3.medium)
21 lines
558 B
YAML
21 lines
558 B
YAML
---
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
title: EC2-launch plugin manifest
|
|
type: object
|
|
properties:
|
|
plugins:
|
|
type: object
|
|
properties:
|
|
ec2_launch:
|
|
type: object
|
|
properties:
|
|
security_group_ids:
|
|
type: array
|
|
items: {type: string}
|
|
uniqueItems: true
|
|
instance_type: {type: string}
|
|
ssh_key: {type: string}
|
|
print_public_ip: {type: string}
|
|
tags: {type: object}
|
|
deregister_ami: {type: boolean}
|
|
additionalProperties: false
|