forked from mupixa/deploy-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
46 lines (46 loc) · 1.21 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
38
39
40
41
42
43
44
45
46
name: "Update source and configuration of AWS Lambda function"
description: "Update a Lambda function from a ZIP file"
author: "Vladimir Daskalov"
branding:
icon: "zap"
color: "purple"
inputs:
ZIP:
description: "Zip package of the complete Lambda source and dependencies."
default: ""
FUNCTION_NAME:
description: "Name of the Lambda function"
default: ""
AWS_SECRET_KEY:
description: "AWS secret key"
default: ""
AWS_SECRET_ID:
description: "AWS secret key ID"
default: ""
AWS_REGION:
description: "AWS region of the Lambda"
default: ""
RUNTIME:
description: "Optional Lambda configuration property"
default: ""
ROLE:
description: "Optional Lambda configuration property"
default: ""
HANDLER:
description: "Optional Lambda configuration property"
default: ""
TIMEOUT:
description: "Optional Lambda configuration property"
default: ""
MEMORY_SIZE:
description: "Optional Lambda configuration property"
default: ""
ENVIRONMENT:
description: "Optional Lambda configuration property"
default: ""
DESCRIPTION:
description: "Optional Lambda configuration property"
default: ""
runs:
using: "node12"
main: "index.js"