feat: add initial code logic

This commit is contained in:
Richard Simpson
2019-09-20 15:09:58 -05:00
parent db817f6cf8
commit 200002c936
8 changed files with 5513 additions and 0 deletions

15
action.yml Normal file
View File

@@ -0,0 +1,15 @@
name: 'Vault Secrets'
description: 'A Github Action that allows you to consume vault secrets as secure environment variables'
inputs:
vaultUrl:
description: 'The URL for the vault endpoint'
required: true
vaultToken:
description: 'The Vault Token to be used to authenticate with Vault'
required: true
keys:
description: 'A semicolon-separated list of key paths to retrieve. These will automatically be converted to environmental variable keys. See README for more details'
required: true
runs:
using: 'node10'
main: 'index.js'