-
Notifications
You must be signed in to change notification settings - Fork 26
/
plugin.yml
46 lines (46 loc) · 888 Bytes
/
plugin.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: ECS Deploy
description: Deploy to ECS
author: https://github.com/buildkite
requirements:
- aws
- jq
configuration:
properties:
cluster:
type: string
container-definitions:
type: string
env:
type: array
execution-role:
type: string
image:
type: [ string, array ]
region:
type: string
service:
type: string
task-cpu:
type: integer
task-ephemeral-storage:
type: integer
task-ipc-mode:
type: string
enum: [ "host", "none", "task"]
task-family:
type: string
task-memory:
type: integer
task-network-mode:
type: string
enum: [ "awsvpc", "bridge", "host", "none" ]
task-pid-mode:
type: string
enum: [ "host", "task" ]
task-role-arn:
type: string
required:
- cluster
- service
- task-family
- image