5
0
Fork 0
mirror of https://github.com/hashicorp/vault-action.git synced 2025-11-10 16:46:56 +00:00

rename data key

This commit is contained in:
JM Faircloth 2023-06-08 11:00:24 -05:00
parent 1e9b7b0458
commit a44b21e955
2 changed files with 3 additions and 3 deletions

View file

@ -159,8 +159,8 @@ jobs:
url: http://localhost:8200 url: http://localhost:8200
token: testtoken token: testtoken
secrets: | secrets: |
secret/data/specialchars secret ; secret/data/specialchars specialsecret ;
secret/data/specialchars secret | SPECIAL_CHARS_SECRET ; secret/data/specialchars specialsecret | SPECIAL_CHARS_SECRET ;
- name: Test Vault Action (cubbyhole) - name: Test Vault Action (cubbyhole)
uses: ./ uses: ./

View file

@ -31,7 +31,7 @@ const vaultToken = `${process.env.VAULT_TOKEN}` === undefined ? `${process.env.V
}, },
json: { json: {
data: { data: {
secret: 'abc$xyz', specialsecret: 'abc$xyz',
}, },
}, },
}); });