-
Notifications
You must be signed in to change notification settings - Fork 11
/
action.yml
31 lines (31 loc) · 982 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
name: "AWS Parameter Store Injector"
description: "Create or Update an AWS SSM (Systems Manager) Parameter with ease"
branding:
icon: briefcase
color: orange
inputs:
aws-region:
required: true
description: "The AWS Region to use"
ssm-path:
description: "The Path of the SSM Parameter Store path to store"
required: true
ssm-value-description:
description: "A description of the value being inserted into SSM"
default: ""
ssm-value:
description: "The value to be stored in the SSM Parameter Store Path"
required: true
ssm-value-type:
description: "The value type to store the SSM Parameter (String | StringList | SecureString)"
required: true
default: "SecureString"
ssm-value-overwrite:
description: "Overwrite the value of the SSM Parameter when inserting"
default: true
ssm-kms-key-id:
description: "The AWS KMS Key ARN to use to encrypt the key"
default: ""
runs:
using: "node16"
main: "index.js"