forked from sohelamin/aws-security-group-add-ip-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (33 loc) · 839 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
name: 'AWS Security Group Add IP'
description: 'Add IP address to your AWS security group'
author: 'Charles Sullivan'
branding:
icon: 'lock'
color: 'red'
inputs:
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 description of your IP permission'
required: false
default: 'GitHub Action'
runs:
using: 'node12'
main: 'dist/main/index.js'
post: 'dist/cleanup/index.js'