forked from sohelamin/aws-security-group-add-ip-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
31 lines (31 loc) · 771 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
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'
description:
description: 'The descriptipn of your IP permission'
required: false
default: 'GitHub Action'
runs:
using: 'node12'
main: 'dist/main/index.js'
post: 'dist/cleanup/index.js'