forked from say8425/aws-secrets-manager-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 722 Bytes
/
action.yml
File metadata and controls
27 lines (27 loc) · 722 Bytes
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
name: 'aws-secrets-manager-actions'
description: 'GitHub Actions for AWS Secrets Manager'
inputs:
SECRET_NAME:
description: 'Set secret name that you want to get.'
required: true
AWS_ACCESS_KEY_ID:
description: 'Set Aws Access Key ID'
required: true
AWS_SECRET_ACCESS_KEY:
description: 'Set Aws Secret access Key'
required: true
AWS_SESSION_TOKEN:
description: 'Set Aws Session token (optional)'
required: false
AWS_DEFAULT_REGION:
description: 'Set Aws default region'
required: true
OUTPUT_PATH:
description: 'Set output file where variables are write'
required: false
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'lock'
color: 'orange'