-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
82 lines (66 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: 'CloudFormation Deploy Action'
author: 'jbw'
description: 'Deploys a CloudFormation stack'
inputs:
stackName:
description: 'The name of the stack to deploy'
required: true
default: ''
templateFile:
description: 'The relative path to the template file'
required: false
default: ''
templateUrl:
description: 'The URL to the template file'
required: false
default: ''
capabilities:
description: 'The capabilities to add to the stack'
required: false
default: 'CAPABILITY_IAM'
timeout:
description: 'The timeout for the stack operation'
required: false
default: '60'
wait:
description: 'Wait for the stack operation to complete'
required: false
default: 'true'
executeChangeSet:
description: 'Execute the change set'
required: false
default: 'true'
enableRollback:
description: 'Enable rollback on stack failure'
required: false
default: 'false'
terminationProtection:
description: 'Enable termination protection'
required: false
default: 'false'
roleArn:
description: 'The ARN of the role to use for the stack'
required: false
default: ''
notificationArn:
description: 'The ARN of the notification topics to use for the stack'
required: false
default: ''
tags:
description: 'The tags to add to the stack'
required: false
default: '[]'
parameterOverrides:
description: 'The parameter overrides to add to the stack'
required: false
default: '[]'
parameterOverridesFilePath:
description: 'The path to the parameter overrides file'
required: false
default: ''
runs:
using: node16
main: dist/index.js
branding:
icon: zap
color: yellow