-
Notifications
You must be signed in to change notification settings - Fork 16
/
action.yml
37 lines (36 loc) · 1.07 KB
/
action.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
name: 'Run one-off task on ECS'
description: 'Run a task on ECS and waits for ECS task to finish.'
branding:
icon: 'activity'
color: 'white'
inputs:
cluster:
description: "The name of the ECS service's cluster. Will default to the 'default' cluster"
required: false
task-definition:
description: 'The name of the task-definition'
required: true
subnets:
description: 'The list of subnets'
required: true
security-groups:
description: 'The list of Security Groups'
required: true
override-container:
description: 'The container whose command should be overridden'
required: false
override-container-command:
description: 'The command to to be run on the overrided container'
required: false
assign-public-ip:
description: 'Assign public IP to the task. (ENABLED/DISABLED)'
required: false
default: 'ENABLED'
outputs:
task-arn:
description: 'The ARN for the tash that finished running'
status:
description: 'The status of the task, success for sucesssful tasks.'
runs:
using: 'node12'
main: 'dist/index.js'