forked from Bardavon-Health/actions-aws-ssm-params-to-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
28 lines (28 loc) · 876 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
name: 'AWS SSM parameters to environment variables'
description: 'load AWS SSM Parameters into environment variables'
author: 'Denny Biasiolli at IP Sentinel'
branding:
icon: 'cloud'
color: 'orange'
inputs:
ssm-path:
description: 'AWS SSM path for parameter (eg. `/ssm/parameter`)'
required: true
get-children:
description: 'Define to get parameters by path, retrieving all children values'
required: false
prefix:
description: 'Set a prefix on the environment variable'
required: false
decryption:
description: 'Whether the parameter must be decrypted or not'
required: false
mask-values:
description: 'Indicates if extracted values should be masked in GitHub action logs'
required: false
out-file:
description: 'Output file of the variables gathered'
required: false
runs:
using: 'node16'
main: 'index.js'