forked from abhilash1in/aws-secrets-manager-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
21 lines (21 loc) · 733 Bytes
/
action.yml
File metadata and controls
21 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: 'AWS Secrets Manager Action'
author: 'Abhilash Kishore'
description: 'Use secrets from AWS Secrets Manager as environment variables in your GitHub Actions workflow'
inputs:
secrets:
description: 'List of secret names you want to fetch secret values for'
required: true
parse-json:
description: 'If true and secret values are stringified JSON objects, they will be parsed and flattened. Its key value pairs will become individual secrets'
required: false
default: 'false'
disable-warnings:
description: 'If true, disable annotation warnings in the GitHub Actions output.'
required: false
default: 'false'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: lock
color: blue