-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 718 Bytes
/
action.yml
File metadata and controls
27 lines (27 loc) · 718 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: false
AWS_SECRET_ACCESS_KEY:
description: 'Set Aws Secret access Key'
required: false
AWS_SESSION_TOKEN:
description: 'Set Aws Session token Key'
required: false
AWS_DEFAULT_REGION:
description: 'Set Aws default region'
required: false
OUTPUT_PATH:
description: 'Set output file where variables are write'
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'lock'
color: 'orange'