-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (30 loc) · 909 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: 'Configure AWS Secrets Manager'
description: 'A Github action to load secrets from AWS Secrets Manager into the environment'
author: 'muchobien'
branding:
icon: cloud
color: orange
inputs:
secret-id:
description: 'The ARN or name of the secret to retrieve.'
required: true
version-id:
description: 'The unique identifier of the version of the secret to retrieve.'
required: false
stage:
description: 'The staging label of the version of the secret to retrieve.'
required: false
overrides:
description: 'Should override existing environment variables'
required: false
default: 'false'
exporters:
description: 'List of exporters to use: env, output, file'
required: false
default: 'env,output'
file-path:
description: 'The path to the file to write the secrets to.'
required: false
runs:
using: 'node20'
main: 'dist/index.js'