Skip to content

Commit 8fdfc0d

Browse files
committed
Fix typo in secret
1 parent 91b4280 commit 8fdfc0d

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,12 @@ jobs:
6666
url: https://localhost:8200
6767
token: ${{ env.VAULT_TOKEN }}
6868
caCertificate: ${{ secrets.VAULTCA }}
69+
clientCertificate: ${{ secrets.VAULT_CLIENT_CERT }}
70+
clientKey: ${{ secrets.VAULT_CLIENT_KEY }}
6971
secrets: |
7072
test secret ;
7173
test secret | NAMED_SECRET ;
72-
nested/test otherSecret ;s
74+
nested/test otherSecret ;
7375
7476
- name: use vault action (custom K/V version 1)
7577
uses: ./
@@ -79,6 +81,8 @@ jobs:
7981
path: my-secret
8082
kv-version: 1
8183
caCertificate: ${{ secrets.VAULTCA }}
84+
clientCertificate: ${{ secrets.VAULT_CLIENT_CERT }}
85+
clientKey: ${{ secrets.VAULT_CLIENT_KEY }}
8286
secrets: |
8387
test altSecret ;
8488
test altSecret | NAMED_ALTSECRET ;
@@ -92,6 +96,8 @@ jobs:
9296
/cubbyhole/test foo ;
9397
/cubbyhole/test zip | NAMED_CUBBYSECRET ;
9498
caCertificate: ${{ secrets.VAULTCA }}
99+
clientCertificate: ${{ secrets.VAULT_CLIENT_CERT }}
100+
clientKey: ${{ secrets.VAULT_CLIENT_KEY }}
95101
- name: verify
96102
run: npm run test:e2e-tls
97103
env:

0 commit comments

Comments
 (0)