-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathaction.yml
39 lines (39 loc) · 995 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
33
34
35
36
37
38
39
name: 'AWS Security Group Add IP'
description: 'Add IP address to your AWS security group'
author: 'Sohel Amin'
branding:
icon: 'lock'
color: 'red'
inputs:
aws-access-key-id:
description: 'AWS Access Key ID'
required: true
aws-secret-access-key:
description: 'AWS Secret Access Key'
required: true
aws-region:
description: 'AWS Region'
required: true
aws-security-group-id:
description: 'AWS Security Group'
required: true
port:
description: 'The port which you want to allow'
required: false
default: '22'
to-port:
description: 'The to port which you want to allow (Leave it as blank to ignore)'
required: false
default: ''
protocol:
description: 'Protocol for the rule'
required: false
default: 'tcp'
description:
description: 'The descriptipn of your IP permission'
required: false
default: 'GitHub Action'
runs:
using: 'node20'
main: 'dist/main/index.js'
post: 'dist/cleanup/index.js'