-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (32 loc) · 964 Bytes
/
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
name: 'Amazon App Mesh Virtual Node Action for GitHub Actions'
description: 'Creates an Amazon App Mesh Virtual Node'
branding:
icon: 'cloud'
color: 'orange'
inputs:
action:
description: 'Whether to create or delete the resource. `create` is the default.'
required: false
name:
description: 'The name of the Virtual Node'
required: true
mesh-name:
description: 'The name of the App Mesh Mesh.'
required: true
spec:
description: 'The Virtual Node specification as a JSON string.'
required: true
mesh-owner:
description: 'The account ID of the App Mesh Mesh.'
required: false
tags:
description: 'An array of objects with the keywords "key" and "value", as a JSON string, ex: [{"key": "foo", "value": "bar"}]'
required: false
outputs:
arn:
description: 'The ARN of the Virtual Node'
response:
description: 'The final response of the AWS API.'
runs:
using: 'node16'
main: 'dist/index.js'