forked from Bardavon-Health/actions-aws-ssm-params-to-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
25 lines (25 loc) · 819 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
name: 'AWS SSM parameters to environment variables'
description: 'load AWS SSM Parameters into environment variables'
author: 'Bardavon Health Innovations and 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
runs:
using: 'node20'
main: 'index.js'