mirror of
https://github.com/hashicorp/vault-action.git
synced 2026-04-27 05:44:26 +00:00
feat: add initial code logic
This commit is contained in:
parent
db817f6cf8
commit
200002c936
8 changed files with 5513 additions and 0 deletions
15
action.yml
Normal file
15
action.yml
Normal 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'
|
||||
Loading…
Add table
Add a link
Reference in a new issue