mirror of
https://github.com/hashicorp/vault-action.git
synced 2026-07-27 17:03:16 +03:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 867290158a | |||
| 790b5eac34 | |||
| 074f580c7d | |||
| 14c5ac9697 |
@@ -18,15 +18,3 @@ Relates OR Closes #0000
|
|||||||
prioritize this request
|
prioritize this request
|
||||||
* Please do not leave "+1" comments, they generate extra noise for pull request
|
* Please do not leave "+1" comments, they generate extra noise for pull request
|
||||||
followers and do not help prioritize the request
|
followers and do not help prioritize the request
|
||||||
|
|
||||||
## PCI review checklist
|
|
||||||
|
|
||||||
<!-- heimdall_github_prtemplate:grc-pci_dss-2024-01-05 -->
|
|
||||||
|
|
||||||
- [ ] I have documented a clear reason for, and description of, the change I am making.
|
|
||||||
|
|
||||||
- [ ] If applicable, I've documented a plan to revert these changes if they require more than reverting the pull request.
|
|
||||||
|
|
||||||
- [ ] If applicable, I've documented the impact of any changes to security controls.
|
|
||||||
|
|
||||||
Examples of changes to security controls include using new access control methods, adding or removing logging pipelines, etc.
|
|
||||||
|
|||||||
@@ -1,14 +1,11 @@
|
|||||||
|
# To get started with Dependabot version updates, you'll need to specify which
|
||||||
|
# package ecosystems to update and where the package manifests are located.
|
||||||
# Please see the documentation for all configuration options:
|
# Please see the documentation for all configuration options:
|
||||||
# https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates
|
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||||
|
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "npm"
|
- package-ecosystem: "npm" # See documentation for possible values
|
||||||
directory: "/" # Location of package manifests
|
directory: "/" # Location of package manifests
|
||||||
open-pull-requests-limit: 0 # only require security updates and exclude version updates
|
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "daily"
|
||||||
# For got, ignore all updates since it is now native ESM
|
|
||||||
# see https://github.com/hashicorp/vault-action/pull/457#issuecomment-1601445634
|
|
||||||
ignore:
|
|
||||||
- dependency-name: "got"
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ jobs:
|
|||||||
actionlint:
|
actionlint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
- name: "Lint workflow files"
|
- name: "Lint workflow files"
|
||||||
uses: docker://docker.mirror.hashicorp.services/rhysd/actionlint:latest
|
uses: docker://docker.mirror.hashicorp.services/rhysd/actionlint:latest
|
||||||
with:
|
with:
|
||||||
|
|||||||
+219
-235
@@ -6,299 +6,283 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
||||||
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
||||||
with:
|
with:
|
||||||
node-version: "24.15.0"
|
node-version: '20.12.2'
|
||||||
|
|
||||||
- name: Setup NPM Cache
|
- name: Setup NPM Cache
|
||||||
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
|
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
|
||||||
with:
|
with:
|
||||||
path: ~/.npm
|
path: ~/.npm
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-node-
|
${{ runner.os }}-node-
|
||||||
|
|
||||||
- name: NPM Install
|
- name: NPM Install
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: NPM Build
|
- name: NPM Build
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
- name: NPM Run Test
|
- name: NPM Run Test
|
||||||
run: npm run test
|
run: npm run test
|
||||||
|
|
||||||
integrationOSS:
|
integrationOSS:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
||||||
- name: Run docker compose
|
- name: Run docker-compose
|
||||||
run: docker compose up -d --wait vault
|
run: docker-compose up -d vault
|
||||||
|
|
||||||
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
||||||
with:
|
with:
|
||||||
node-version: "24.15.0"
|
node-version: '20.12.2'
|
||||||
|
|
||||||
- name: Setup NPM Cache
|
- name: Setup NPM Cache
|
||||||
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
|
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
|
||||||
with:
|
with:
|
||||||
path: ~/.npm
|
path: ~/.npm
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-node-
|
${{ runner.os }}-node-
|
||||||
|
|
||||||
- name: NPM Install
|
- name: NPM Install
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: NPM Build
|
- name: NPM Build
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
- name: NPM Run test;integration:basic
|
- name: NPM Run test;integration:basic
|
||||||
run: npm run test:integration:basic
|
run: npm run test:integration:basic
|
||||||
env:
|
env:
|
||||||
VAULT_HOST: 127.0.0.1
|
VAULT_HOST: localhost
|
||||||
VAULT_PORT: 8200
|
VAULT_PORT: 8200
|
||||||
CI: true
|
CI: true
|
||||||
|
|
||||||
integrationEnterprise:
|
integrationEnterprise:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
||||||
- name: Run docker compose
|
- name: Run docker-compose
|
||||||
if: ${{ !env.ACT }}
|
run: docker-compose up -d vault-enterprise
|
||||||
run: docker compose up -d --wait vault-enterprise
|
env:
|
||||||
env:
|
VAULT_LICENSE_CI: ${{ secrets.VAULT_LICENSE_CI }}
|
||||||
VAULT_LICENSE_CI: ${{ secrets.VAULT_LICENSE_CI }}
|
|
||||||
|
|
||||||
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
||||||
with:
|
with:
|
||||||
node-version: "24.15.0"
|
node-version: '20.12.2'
|
||||||
|
|
||||||
- name: Setup NPM Cache
|
- name: Setup NPM Cache
|
||||||
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
|
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
|
||||||
with:
|
with:
|
||||||
path: ~/.npm
|
path: ~/.npm
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-node-
|
${{ runner.os }}-node-
|
||||||
|
|
||||||
- name: NPM Install
|
- name: NPM Install
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: NPM Build
|
- name: NPM Build
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
- name: NPM Run test:integration:enterprise
|
- name: NPM Run test:integration:enterprise
|
||||||
run: npm run test:integration:enterprise
|
run: npm run test:integration:enterprise
|
||||||
env:
|
env:
|
||||||
VAULT_HOST: 127.0.0.1
|
VAULT_HOST: localhost
|
||||||
VAULT_PORT: 8200
|
VAULT_PORT: 8200
|
||||||
CI: true
|
CI: true
|
||||||
|
|
||||||
e2e:
|
e2e:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
||||||
- name: Run docker compose
|
- name: Run docker-compose
|
||||||
if: ${{ !env.ACT }}
|
run: docker-compose up -d vault
|
||||||
run: docker compose up -d --wait vault
|
|
||||||
|
|
||||||
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
||||||
with:
|
with:
|
||||||
node-version: "24.15.0"
|
node-version: '20.12.2'
|
||||||
|
|
||||||
- name: Setup NPM Cache
|
- name: Setup NPM Cache
|
||||||
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
|
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
|
||||||
with:
|
with:
|
||||||
path: ~/.npm
|
path: ~/.npm
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-node-
|
${{ runner.os }}-node-
|
||||||
|
|
||||||
- name: NPM Install
|
- name: NPM Install
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: NPM Build
|
- name: NPM Build
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
- name: Setup Vault
|
- name: Setup Vault
|
||||||
run: node ./integrationTests/e2e/setup.js
|
run: node ./integrationTests/e2e/setup.js
|
||||||
env:
|
env:
|
||||||
VAULT_HOST: localhost
|
VAULT_HOST: localhost
|
||||||
VAULT_PORT: 8200
|
VAULT_PORT: 8200
|
||||||
|
|
||||||
- name: Test Vault Action (default KV V2)
|
- name: Test Vault Action (default KV V2)
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
id: kv-secrets
|
id: kv-secrets
|
||||||
with:
|
with:
|
||||||
url: http://localhost:8200
|
url: http://localhost:8200
|
||||||
token: testtoken
|
token: testtoken
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/test secret ;
|
secret/data/test secret ;
|
||||||
secret/data/test secret | NAMED_SECRET ;
|
secret/data/test secret | NAMED_SECRET ;
|
||||||
secret/data/nested/test otherSecret ;
|
secret/data/nested/test otherSecret ;
|
||||||
|
|
||||||
- name: Test Vault Action (default KV V1)
|
- name: Test Vault Action (default KV V1)
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
with:
|
with:
|
||||||
url: http://localhost:8200
|
url: http://localhost:8200
|
||||||
token: testtoken
|
token: testtoken
|
||||||
secrets: |
|
secrets: |
|
||||||
my-secret/test altSecret ;
|
my-secret/test altSecret ;
|
||||||
my-secret/test altSecret | NAMED_ALTSECRET ;
|
my-secret/test altSecret | NAMED_ALTSECRET ;
|
||||||
my-secret/nested/test otherAltSecret ;
|
my-secret/nested/test otherAltSecret ;
|
||||||
|
|
||||||
- name: Test Vault Action (cubbyhole)
|
- name: Test Vault Action (cubbyhole)
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
with:
|
with:
|
||||||
url: http://localhost:8200
|
url: http://localhost:8200
|
||||||
token: testtoken
|
token: testtoken
|
||||||
secrets: |
|
secrets: |
|
||||||
/cubbyhole/test foo ;
|
/cubbyhole/test foo ;
|
||||||
/cubbyhole/test zip | NAMED_CUBBYSECRET ;
|
/cubbyhole/test zip | NAMED_CUBBYSECRET ;
|
||||||
|
|
||||||
# The ordering of these two Test Vault Action Overwrites Env Vars In Subsequent Action steps matters
|
# The ordering of these two Test Vault Action Overwrites Env Vars In Subsequent Action steps matters
|
||||||
# They should come before the Verify Vault Action Outputs step
|
# They should come before the Verify Vault Action Outputs step
|
||||||
- name: Test Vault Action Overwrites Env Vars In Subsequent Action (part 1/2)
|
- name: Test Vault Action Overwrites Env Vars In Subsequent Action (part 1/2)
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
with:
|
with:
|
||||||
url: http://localhost:8200/
|
url: http://localhost:8200/
|
||||||
token: testtoken
|
token: testtoken
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/test secret | SUBSEQUENT_TEST_SECRET;
|
secret/data/test secret | SUBSEQUENT_TEST_SECRET;
|
||||||
|
|
||||||
- name: Test Vault Action Overwrites Env Vars In Subsequent Action (part 2/2)
|
- name: Test Vault Action Overwrites Env Vars In Subsequent Action (part 2/2)
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
with:
|
with:
|
||||||
url: http://localhost:8200/
|
url: http://localhost:8200/
|
||||||
token: testtoken
|
token: testtoken
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/subsequent-test secret | SUBSEQUENT_TEST_SECRET;
|
secret/data/subsequent-test secret | SUBSEQUENT_TEST_SECRET;
|
||||||
|
|
||||||
- name: Test JSON Secrets
|
- name: Test JSON Secrets
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
with:
|
with:
|
||||||
url: http://localhost:8200
|
url: http://localhost:8200
|
||||||
token: testtoken
|
token: testtoken
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/test-json-data jsonData;
|
secret/data/test-json-data jsonData;
|
||||||
secret/data/test-json-string jsonString;
|
secret/data/test-json-string jsonString;
|
||||||
secret/data/test-json-string-multiline jsonStringMultiline;
|
secret/data/test-json-string-multiline jsonStringMultiline;
|
||||||
|
|
||||||
|
- name: Verify Vault Action Outputs
|
||||||
|
run: npm run test:integration:e2e
|
||||||
|
env:
|
||||||
|
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }}
|
||||||
|
|
||||||
- name: Verify Vault Action Outputs
|
|
||||||
run: npm run test:integration:e2e
|
|
||||||
env:
|
|
||||||
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }}
|
|
||||||
|
|
||||||
e2e-tls:
|
e2e-tls:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
||||||
- name: Generate TLS Certificates
|
- name: Run docker-compose
|
||||||
if: ${{ !env.ACT }}
|
run: docker-compose up -d vault-tls
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
GH_GET_RETRIES: 3
|
|
||||||
run: |
|
|
||||||
# Source the getGH function for authenticated GitHub downloads with retries
|
|
||||||
source ./scripts/.functions
|
|
||||||
getGH https://github.com/cloudflare/cfssl/releases/download/v1.6.5/cfssl_1.6.5_linux_amd64 /usr/local/bin/cfssl
|
|
||||||
getGH https://github.com/cloudflare/cfssl/releases/download/v1.6.5/cfssljson_1.6.5_linux_amd64 /usr/local/bin/cfssljson
|
|
||||||
chmod +x /usr/local/bin/cfssl /usr/local/bin/cfssljson
|
|
||||||
./scripts/gen-tls-certs.sh
|
|
||||||
cat .build/e2e-tls.env >> "$GITHUB_ENV"
|
|
||||||
|
|
||||||
- name: Run docker compose
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
||||||
if: ${{ !env.ACT }}
|
with:
|
||||||
run: docker compose up -d --wait vault-tls
|
node-version: '20.12.2'
|
||||||
|
|
||||||
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
- name: Setup NPM Cache
|
||||||
with:
|
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
|
||||||
node-version: "24.15.0"
|
with:
|
||||||
|
path: ~/.npm
|
||||||
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-node-
|
||||||
|
|
||||||
- name: Setup NPM Cache
|
- name: NPM Install
|
||||||
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
|
run: npm ci
|
||||||
with:
|
|
||||||
path: ~/.npm
|
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-node-
|
|
||||||
|
|
||||||
- name: NPM Install
|
- name: NPM Build
|
||||||
run: npm ci
|
run: npm run build
|
||||||
|
|
||||||
- name: NPM Build
|
- name: Setup Vault
|
||||||
run: npm run build
|
run: node ./integrationTests/e2e-tls/setup.js
|
||||||
|
env:
|
||||||
|
VAULT_HOST: localhost
|
||||||
|
VAULT_PORT: 8200
|
||||||
|
VAULTCA: ${{ secrets.VAULTCA }}
|
||||||
|
VAULT_CLIENT_CERT: ${{ secrets.VAULT_CLIENT_CERT }}
|
||||||
|
VAULT_CLIENT_KEY: ${{ secrets.VAULT_CLIENT_KEY }}
|
||||||
|
|
||||||
- name: Setup Vault
|
- name: Test Vault Action (default KV V2)
|
||||||
run: node ./integrationTests/e2e-tls/setup.js
|
uses: hashicorp/vault-action@main
|
||||||
env:
|
id: kv-secrets-tls
|
||||||
VAULT_HOST: localhost
|
with:
|
||||||
VAULT_PORT: 8200
|
url: https://localhost:8200
|
||||||
VAULTCA: ${{ env.VAULTCA }}
|
token: ${{ env.VAULT_TOKEN }}
|
||||||
VAULT_CLIENT_CERT: ${{ env.VAULT_CLIENT_CERT }}
|
caCertificate: ${{ secrets.VAULTCA }}
|
||||||
VAULT_CLIENT_KEY: ${{ env.VAULT_CLIENT_KEY }}
|
clientCertificate: ${{ secrets.VAULT_CLIENT_CERT }}
|
||||||
|
clientKey: ${{ secrets.VAULT_CLIENT_KEY }}
|
||||||
|
secrets: |
|
||||||
|
secret/data/test secret ;
|
||||||
|
secret/data/test secret | NAMED_SECRET ;
|
||||||
|
secret/data/nested/test otherSecret ;
|
||||||
|
|
||||||
- name: Test Vault Action (default KV V2)
|
- name: Test Vault Action (tlsSkipVerify)
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
id: kv-secrets-tls
|
with:
|
||||||
with:
|
url: https://localhost:8200
|
||||||
url: https://localhost:8200
|
token: ${{ env.VAULT_TOKEN }}
|
||||||
token: ${{ env.VAULT_TOKEN }}
|
tlsSkipVerify: true
|
||||||
caCertificate: ${{ env.VAULTCA }}
|
clientCertificate: ${{ secrets.VAULT_CLIENT_CERT }}
|
||||||
clientCertificate: ${{ env.VAULT_CLIENT_CERT }}
|
clientKey: ${{ secrets.VAULT_CLIENT_KEY }}
|
||||||
clientKey: ${{ env.VAULT_CLIENT_KEY }}
|
secrets: |
|
||||||
secrets: |
|
secret/data/tlsSkipVerify skip ;
|
||||||
secret/data/test secret ;
|
|
||||||
secret/data/test secret | NAMED_SECRET ;
|
|
||||||
secret/data/nested/test otherSecret ;
|
|
||||||
|
|
||||||
- name: Test Vault Action (tlsSkipVerify)
|
- name: Test Vault Action (default KV V1)
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
with:
|
with:
|
||||||
url: https://localhost:8200
|
url: https://localhost:8200
|
||||||
token: ${{ env.VAULT_TOKEN }}
|
token: ${{ env.VAULT_TOKEN }}
|
||||||
tlsSkipVerify: true
|
caCertificate: ${{ secrets.VAULTCA }}
|
||||||
clientCertificate: ${{ env.VAULT_CLIENT_CERT }}
|
clientCertificate: ${{ secrets.VAULT_CLIENT_CERT }}
|
||||||
clientKey: ${{ env.VAULT_CLIENT_KEY }}
|
clientKey: ${{ secrets.VAULT_CLIENT_KEY }}
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/tlsSkipVerify skip ;
|
my-secret/test altSecret ;
|
||||||
|
my-secret/test altSecret | NAMED_ALTSECRET ;
|
||||||
|
my-secret/nested/test otherAltSecret ;
|
||||||
|
|
||||||
- name: Test Vault Action (default KV V1)
|
- name: Test Vault Action (cubbyhole)
|
||||||
uses: ./
|
uses: hashicorp/vault-action@main
|
||||||
with:
|
with:
|
||||||
url: https://localhost:8200
|
url: https://localhost:8200
|
||||||
token: ${{ env.VAULT_TOKEN }}
|
token: ${{ env.VAULT_TOKEN }}
|
||||||
caCertificate: ${{ env.VAULTCA }}
|
secrets: |
|
||||||
clientCertificate: ${{ env.VAULT_CLIENT_CERT }}
|
/cubbyhole/test foo ;
|
||||||
clientKey: ${{ env.VAULT_CLIENT_KEY }}
|
/cubbyhole/test zip | NAMED_CUBBYSECRET ;
|
||||||
secrets: |
|
caCertificate: ${{ secrets.VAULTCA }}
|
||||||
my-secret/test altSecret ;
|
clientCertificate: ${{ secrets.VAULT_CLIENT_CERT }}
|
||||||
my-secret/test altSecret | NAMED_ALTSECRET ;
|
clientKey: ${{ secrets.VAULT_CLIENT_KEY }}
|
||||||
my-secret/nested/test otherAltSecret ;
|
|
||||||
|
|
||||||
- name: Test Vault Action (cubbyhole)
|
- name: Verify Vault Action Outputs
|
||||||
uses: ./
|
run: npm run test:integration:e2e-tls
|
||||||
with:
|
env:
|
||||||
url: https://localhost:8200
|
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets-tls.outputs.otherSecret }}
|
||||||
token: ${{ env.VAULT_TOKEN }}
|
|
||||||
secrets: |
|
|
||||||
/cubbyhole/test foo ;
|
|
||||||
/cubbyhole/test zip | NAMED_CUBBYSECRET ;
|
|
||||||
caCertificate: ${{ env.VAULTCA }}
|
|
||||||
clientCertificate: ${{ env.VAULT_CLIENT_CERT }}
|
|
||||||
clientKey: ${{ env.VAULT_CLIENT_KEY }}
|
|
||||||
|
|
||||||
- name: Verify Vault Action Outputs
|
|
||||||
run: npm run test:integration:e2e-tls
|
|
||||||
env:
|
|
||||||
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets-tls.outputs.otherSecret }}
|
|
||||||
|
|||||||
@@ -18,11 +18,11 @@ jobs:
|
|||||||
name: local-test
|
name: local-test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
||||||
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
||||||
with:
|
with:
|
||||||
node-version: '24.15.0'
|
node-version: '20.9.0'
|
||||||
|
|
||||||
- name: NPM Install
|
- name: NPM Install
|
||||||
run: npm ci
|
run: npm ci
|
||||||
@@ -33,7 +33,7 @@ jobs:
|
|||||||
- name: Setup Vault
|
- name: Setup Vault
|
||||||
run: node ./integrationTests/e2e/setup.js
|
run: node ./integrationTests/e2e/setup.js
|
||||||
env:
|
env:
|
||||||
VAULT_HOST: 127.0.0.1
|
VAULT_HOST: localhost
|
||||||
VAULT_PORT: 8200
|
VAULT_PORT: 8200
|
||||||
|
|
||||||
- name: Import Secrets
|
- name: Import Secrets
|
||||||
@@ -43,14 +43,14 @@ jobs:
|
|||||||
# run against a specific version of vault-action
|
# run against a specific version of vault-action
|
||||||
# uses: hashicorp/vault-action@v2.1.2
|
# uses: hashicorp/vault-action@v2.1.2
|
||||||
with:
|
with:
|
||||||
url: http://127.0.0.1:8200
|
url: http://localhost:8200
|
||||||
method: token
|
method: token
|
||||||
token: testtoken
|
token: testtoken
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/test-json-string jsonString;
|
secret/data/test-json-string jsonString;
|
||||||
secret/data/test-json-data jsonData;
|
secret/data/test-json-data jsonData;
|
||||||
|
|
||||||
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
- uses: actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
github-token: "foobar"
|
github-token: "foobar"
|
||||||
script: |
|
script: |
|
||||||
|
|||||||
@@ -5,9 +5,6 @@ npm-debug.log*
|
|||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
# Build artifacts
|
|
||||||
.build/
|
|
||||||
|
|
||||||
# Runtime data
|
# Runtime data
|
||||||
pids
|
pids
|
||||||
*.pid
|
*.pid
|
||||||
|
|||||||
+4
-41
@@ -1,51 +1,14 @@
|
|||||||
## 4.0.0 (May 12, 2026)
|
## Unreleased
|
||||||
|
|
||||||
Improvements:
|
Improvements:
|
||||||
|
|
||||||
* Bump node runtime from node20 to node24 [GH-604](https://github.com/hashicorp/vault-action/pull/604)
|
* chore(deps): bump jsonata from 2.0.3 to 2.0.4 [GH-531](https://github.com/hashicorp/vault-action/pull/531)
|
||||||
* Fix leading slash in secret paths causing HTTP 400 errors (e.g. `/cubbyhole/test` → `v1/cubbyhole/test` instead of `v1//cubbyhole/test`)
|
* chore(deps): bump got from 11.8.6 to 14.2.1 [GH-533](https://github.com/hashicorp/vault-action/pull/533)
|
||||||
* bump jsrsasign from 11.1.0 to 11.1.3
|
* convert project from common js to an esm module [GH-533](https://github.com/hashicorp/vault-action/pull/533)
|
||||||
* bump body-parser from 1.20.3 to 1.20.5
|
|
||||||
* bump qs from 6.13.0 to 6.15.1
|
|
||||||
* bump http-errors from 2.0.0 to 2.0.1
|
|
||||||
* bump minimatch from 3.1.2 to 3.1.5
|
|
||||||
* bump underscore from 1.13.4 to 1.13.8
|
|
||||||
|
|
||||||
## 3.4.0 (June 13, 2025)
|
|
||||||
|
|
||||||
Bugs:
|
|
||||||
|
|
||||||
* replace all dot chars during normalization (https://github.com/hashicorp/vault-action/pull/580)
|
|
||||||
|
|
||||||
Improvements:
|
|
||||||
|
|
||||||
* Prevent possible DoS via polynomial regex (https://github.com/hashicorp/vault-action/pull/583)
|
|
||||||
|
|
||||||
## 3.3.0 (March 3, 2025)
|
|
||||||
|
|
||||||
Features:
|
|
||||||
* Wildcard secret imports can use `**` to retain case of exported env keys [GH-545](https://github.com/hashicorp/vault-action/pull/545)
|
|
||||||
|
|
||||||
## 3.2.0 (March 3, 2025)
|
|
||||||
|
|
||||||
Improvements:
|
|
||||||
|
|
||||||
* Add retry for jwt auth login to fix intermittent login failures [GH-574](https://github.com/hashicorp/vault-action/pull/574)
|
|
||||||
|
|
||||||
## 3.1.0 (January 9, 2025)
|
|
||||||
|
|
||||||
Improvements:
|
|
||||||
|
|
||||||
* fix wildcard handling when field contains dot [GH-542](https://github.com/hashicorp/vault-action/pull/542)
|
|
||||||
* bump body-parser from 1.20.0 to 1.20.3
|
|
||||||
* bump braces from 3.0.2 to 3.0.3
|
|
||||||
* bump cross-spawn from 7.0.3 to 7.0.6
|
|
||||||
* bump micromatch from 4.0.5 to 4.0.8
|
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
|
||||||
* `secretId` is no longer required for approle to support advanced use cases like machine login when `bind_secret_id` is false. [GH-522](https://github.com/hashicorp/vault-action/pull/522)
|
* `secretId` is no longer required for approle to support advanced use cases like machine login when `bind_secret_id` is false. [GH-522](https://github.com/hashicorp/vault-action/pull/522)
|
||||||
* Use `pki` configuration to generate certificates from Vault [GH-564](https://github.com/hashicorp/vault-action/pull/564)
|
|
||||||
|
|
||||||
## 3.0.0 (February 15, 2024)
|
## 3.0.0 (February 15, 2024)
|
||||||
|
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
* @hashicorp/vault-ecosystem @hashicorp/team-vault-consumption
|
|
||||||
@@ -1,40 +1,3 @@
|
|||||||
.PHONY: clean
|
|
||||||
clean:
|
|
||||||
rm -rf .build
|
|
||||||
|
|
||||||
.PHONY: local-test
|
.PHONY: local-test
|
||||||
local-test: clean
|
local-test:
|
||||||
docker compose down --volumes; docker compose up --wait vault && \
|
docker compose down; docker-compose up -d vault && act workflow_dispatch -j local-test
|
||||||
act workflow_dispatch --job local-test --workflows .github/workflows/local-test.yaml
|
|
||||||
|
|
||||||
.PHONY: test-npm
|
|
||||||
test-npm:
|
|
||||||
npm ci && npm run build && npm run test
|
|
||||||
|
|
||||||
.PHONY: test-basic
|
|
||||||
test-basic: clean
|
|
||||||
docker compose down --volumes; docker compose up --wait vault && \
|
|
||||||
npm run test:integration:basic
|
|
||||||
|
|
||||||
.PHONY: test-e2e
|
|
||||||
test-e2e: clean
|
|
||||||
docker compose down --volumes; docker compose up --wait vault && \
|
|
||||||
act workflow_dispatch --job e2e --workflows .github/workflows/build.yml
|
|
||||||
|
|
||||||
.PHONY: test-e2e-tls
|
|
||||||
test-e2e-tls: clean
|
|
||||||
./scripts/gen-tls-certs.sh
|
|
||||||
docker compose down --volumes; docker compose up --wait vault-tls && \
|
|
||||||
act workflow_dispatch --job e2e-tls --workflows .github/workflows/build.yml --env-file .build/e2e-tls.env
|
|
||||||
|
|
||||||
.PHONY: test-enterprise
|
|
||||||
test-enterprise: clean
|
|
||||||
@if [ -z "$(VAULT_LICENSE_CI)" ]; then \
|
|
||||||
echo "Skipping enterprise tests: VAULT_LICENSE_CI not set"; \
|
|
||||||
else \
|
|
||||||
docker compose down --volumes; docker compose up --wait vault-enterprise && \
|
|
||||||
act workflow_dispatch --job integrationEnterprise --workflows .github/workflows/build.yml; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
.PHONY: test-all
|
|
||||||
test-all: clean test-npm test-basic test-e2e test-e2e-tls test-enterprise
|
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ is not meant to modify Vault’s state.
|
|||||||
- [Simple Key](#simple-key)
|
- [Simple Key](#simple-key)
|
||||||
- [Set Output Variable Name](#set-output-variable-name)
|
- [Set Output Variable Name](#set-output-variable-name)
|
||||||
- [Multiple Secrets](#multiple-secrets)
|
- [Multiple Secrets](#multiple-secrets)
|
||||||
- [KV secrets engine version 2](#kv-secrets-engine-version-2)
|
|
||||||
- [Other Secret Engines](#other-secret-engines)
|
- [Other Secret Engines](#other-secret-engines)
|
||||||
- [Adding Extra Headers](#adding-extra-headers)
|
- [Adding Extra Headers](#adding-extra-headers)
|
||||||
- [HashiCorp Cloud Platform or Vault Enterprise](#hashicorp-cloud-platform-or-vault-enterprise)
|
- [HashiCorp Cloud Platform or Vault Enterprise](#hashicorp-cloud-platform-or-vault-enterprise)
|
||||||
@@ -46,51 +45,46 @@ is not meant to modify Vault’s state.
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
# ...
|
# ...
|
||||||
steps:
|
steps:
|
||||||
# ...
|
# ...
|
||||||
- name: Import Secrets
|
- name: Import Secrets
|
||||||
id: import-secrets
|
id: import-secrets
|
||||||
uses: hashicorp/vault-action@v2
|
uses: hashicorp/vault-action@v2
|
||||||
with:
|
with:
|
||||||
url: https://vault.mycompany.com:8200
|
url: https://vault.mycompany.com:8200
|
||||||
token: ${{ secrets.VAULT_TOKEN }}
|
token: ${{ secrets.VAULT_TOKEN }}
|
||||||
caCertificate: ${{ secrets.VAULT_CA_CERT }}
|
caCertificate: ${{ secrets.VAULT_CA_CERT }}
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
secret/data/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
||||||
secret/data/ci/aws secretKey | AWS_SECRET_ACCESS_KEY ;
|
secret/data/ci/aws secretKey | AWS_SECRET_ACCESS_KEY ;
|
||||||
secret/data/ci npm_token
|
secret/data/ci npm_token
|
||||||
# ...
|
# ...
|
||||||
```
|
```
|
||||||
|
|
||||||
Retrieved secrets are available as environment variables or outputs for subsequent steps:
|
Retrieved secrets are available as environment variables or outputs for subsequent steps:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
#...
|
#...
|
||||||
- name: Step following 'Import Secrets'
|
- name: Step following 'Import Secrets'
|
||||||
run: |
|
run: |
|
||||||
ACCESS_KEY_ID = "${{ env.AWS_ACCESS_KEY_ID }}"
|
ACCESS_KEY_ID = "${{ env.AWS_ACCESS_KEY_ID }}"
|
||||||
SECRET_ACCESS_KEY = "${{ steps.import-secrets.outputs.AWS_SECRET_ACCESS_KEY }}"
|
SECRET_ACCESS_KEY = "${{ steps.import-secrets.outputs.AWS_SECRET_ACCESS_KEY }}"
|
||||||
|
# ...
|
||||||
# ...
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If your project needs a format other than env vars and step outputs, you can use additional steps to transform them into the desired format.
|
If your project needs a format other than env vars and step outputs, you can use additional steps to transform them into the desired format.
|
||||||
For example, a common pattern is to save all the secrets in a JSON file:
|
For example, a common pattern is to save all the secrets in a JSON file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
#...
|
#...
|
||||||
- name: Step following 'Import Secrets'
|
- name: Step following 'Import Secrets'
|
||||||
run: |
|
run: |
|
||||||
touch secrets.json
|
touch secrets.json
|
||||||
echo '${{ toJson(steps.import-secrets.outputs) }}' >> secrets.json
|
echo '${{ toJson(steps.import-secrets.outputs) }}' >> secrets.json
|
||||||
|
# ...
|
||||||
# ...
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Which with our example would yield a file containing:
|
Which with our example would yield a file containing:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"ACCESS_KEY_ID": "MY_KEY_ID",
|
"ACCESS_KEY_ID": "MY_KEY_ID",
|
||||||
@@ -101,6 +95,7 @@ Which with our example would yield a file containing:
|
|||||||
|
|
||||||
Note that all secrets are masked so programs need to read the file themselves otherwise all values will be replaced with a `***` placeholder.
|
Note that all secrets are masked so programs need to read the file themselves otherwise all values will be replaced with a `***` placeholder.
|
||||||
|
|
||||||
|
|
||||||
## Authentication Methods
|
## Authentication Methods
|
||||||
|
|
||||||
Consider using a [Vault authentication method](https://www.vaultproject.io/docs/auth) such as the JWT auth method with
|
Consider using a [Vault authentication method](https://www.vaultproject.io/docs/auth) such as the JWT auth method with
|
||||||
@@ -114,7 +109,7 @@ and Vault using the
|
|||||||
Each GitHub Actions workflow receives an auto-generated OIDC token with claims
|
Each GitHub Actions workflow receives an auto-generated OIDC token with claims
|
||||||
to establish the identity of the workflow.
|
to establish the identity of the workflow.
|
||||||
|
|
||||||
**Vault Configuration**
|
__Vault Configuration__
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>Click to toggle instructions for configuring Vault.</summary>
|
<summary>Click to toggle instructions for configuring Vault.</summary>
|
||||||
@@ -125,6 +120,7 @@ Pass the following parameters to your auth method configuration:
|
|||||||
- `oidc_discovery_url`: `https://token.actions.githubusercontent.com`
|
- `oidc_discovery_url`: `https://token.actions.githubusercontent.com`
|
||||||
- `bound_issuer`: `https://token.actions.githubusercontent.com`
|
- `bound_issuer`: `https://token.actions.githubusercontent.com`
|
||||||
|
|
||||||
|
|
||||||
Configure a [Vault role](https://www.vaultproject.io/api/auth/jwt#create-role) for the auth method.
|
Configure a [Vault role](https://www.vaultproject.io/api/auth/jwt#create-role) for the auth method.
|
||||||
|
|
||||||
- `role_type`: `jwt`
|
- `role_type`: `jwt`
|
||||||
@@ -140,12 +136,12 @@ Configure a [Vault role](https://www.vaultproject.io/api/auth/jwt#create-role) f
|
|||||||
|
|
||||||
- For wildcard (non-exact) matches, use `bound_claims`.
|
- For wildcard (non-exact) matches, use `bound_claims`.
|
||||||
|
|
||||||
- `bound_claims_type`: `glob`
|
- `bound_claims_type`: `glob`
|
||||||
|
|
||||||
- `bound_claims`: JSON object. Maps one or more claim names to corresponding wildcard values.
|
- `bound_claims`: JSON object. Maps one or more claim names to corresponding wildcard values.
|
||||||
```json
|
```json
|
||||||
{ "sub": "repo:<orgName>/*" }
|
{"sub": "repo:<orgName>/*"}
|
||||||
```
|
```
|
||||||
|
|
||||||
- For exact matches, use `bound_subject`.
|
- For exact matches, use `bound_subject`.
|
||||||
|
|
||||||
@@ -158,17 +154,17 @@ Configure a [Vault role](https://www.vaultproject.io/api/auth/jwt#create-role) f
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
**GitHub Actions Workflow**
|
__GitHub Actions Workflow__
|
||||||
|
|
||||||
In the GitHub Actions workflow, the workflow needs permissions to read contents
|
In the GitHub Actions workflow, the workflow needs permissions to read contents
|
||||||
and write the ID token.
|
and write the ID token.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
jobs:
|
jobs:
|
||||||
retrieve-secret:
|
retrieve-secret:
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
id-token: write
|
id-token: write
|
||||||
```
|
```
|
||||||
|
|
||||||
In the action, provide the name of the Vault role you created to the `role` parameter.
|
In the action, provide the name of the Vault role you created to the `role` parameter.
|
||||||
@@ -323,7 +319,7 @@ with:
|
|||||||
|
|
||||||
The `secrets` parameter is a set of multiple secret requests separated by the `;` character.
|
The `secrets` parameter is a set of multiple secret requests separated by the `;` character.
|
||||||
|
|
||||||
Each secret request consists of the `path` and the `key` of the desired secret, and optionally the desired Env Var output name.
|
Each secret request consists of the `path` and the `key` of the desired secret, and optionally the desired Env Var output name.
|
||||||
Note that the selector is using [JSONata](https://docs.jsonata.org/overview.html) and certain characters in keys may need to be escaped.
|
Note that the selector is using [JSONata](https://docs.jsonata.org/overview.html) and certain characters in keys may need to be escaped.
|
||||||
|
|
||||||
```raw
|
```raw
|
||||||
@@ -336,7 +332,7 @@ To retrieve a key `npmToken` from path `secret/data/ci` that has value `somelong
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
with:
|
with:
|
||||||
secrets: secret/data/ci npmToken
|
secrets: secret/data/ci npmToken
|
||||||
```
|
```
|
||||||
|
|
||||||
`vault-action` will automatically normalize the given secret selector key, and set the follow as environment variables for the following steps in the current job:
|
`vault-action` will automatically normalize the given secret selector key, and set the follow as environment variables for the following steps in the current job:
|
||||||
@@ -349,12 +345,12 @@ You can also access the secret via outputs:
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
steps:
|
steps:
|
||||||
# ...
|
# ...
|
||||||
- name: Import Secrets
|
- name: Import Secrets
|
||||||
id: secrets
|
id: secrets
|
||||||
# Import config...
|
# Import config...
|
||||||
- name: Sensitive Operation
|
- name: Sensitive Operation
|
||||||
run: "my-cli --token '${{ steps.secrets.outputs.npmToken }}'"
|
run: "my-cli --token '${{ steps.secrets.outputs.npmToken }}'"
|
||||||
```
|
```
|
||||||
|
|
||||||
_**Note:** If you'd like to only use outputs and disable automatic environment variables, you can set the `exportEnv` option to `false`._
|
_**Note:** If you'd like to only use outputs and disable automatic environment variables, you can set the `exportEnv` option to `false`._
|
||||||
@@ -365,7 +361,7 @@ However, if you want to set it to a specific name, say `NPM_TOKEN`, you could do
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
with:
|
with:
|
||||||
secrets: secret/data/ci npmToken | NPM_TOKEN
|
secrets: secret/data/ci npmToken | NPM_TOKEN
|
||||||
```
|
```
|
||||||
|
|
||||||
With that, `vault-action` will now use your requested name and output:
|
With that, `vault-action` will now use your requested name and output:
|
||||||
@@ -382,6 +378,7 @@ steps:
|
|||||||
# Import config...
|
# Import config...
|
||||||
- name: Sensitive Operation
|
- name: Sensitive Operation
|
||||||
run: "my-cli --token '${{ steps.secrets.outputs.NPM_TOKEN }}'"
|
run: "my-cli --token '${{ steps.secrets.outputs.NPM_TOKEN }}'"
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Multiple Secrets
|
### Multiple Secrets
|
||||||
@@ -390,81 +387,32 @@ This action can take multi-line input, so say you had your AWS keys stored in a
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
with:
|
with:
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
secret/data/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
||||||
secret/data/ci/aws secretKey | AWS_SECRET_ACCESS_KEY
|
secret/data/ci/aws secretKey | AWS_SECRET_ACCESS_KEY
|
||||||
```
|
```
|
||||||
|
You can specify a wildcard * for the key name to get all keys in the path. If you provide an output name with the wildcard, the name will be prepended to the key name:
|
||||||
You can specify a wildcard \* for the key name to get all keys in the path. If you provide an output name with the wildcard, the name will be prepended to the key name:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
with:
|
|
||||||
secrets: |
|
|
||||||
secret/data/ci/aws * | MYAPP_ ;
|
|
||||||
```
|
|
||||||
|
|
||||||
When using the `exportEnv` option all exported keys will be normalized to uppercase. For example, the key `SecretKey` would be exported as `MYAPP_SECRETKEY`.
|
|
||||||
You can disable uppercase normalization by specifying double asterisks `**` in the selector path:
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
with:
|
with:
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/ci/aws ** | MYAPP_ ;
|
secret/data/ci/aws * | MYAPP_ ;
|
||||||
```
|
```
|
||||||
|
|
||||||
### KV secrets engine version 2
|
|
||||||
|
|
||||||
When accessing secrets from the KV secrets engine version 2, Vault Action
|
|
||||||
requires the full path to the secret. This is the same path that would be used
|
|
||||||
in a Vault policy for the secret. You can find the full path to your secret by
|
|
||||||
performing a `kv get` command like the following:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ vault kv get secret/test
|
|
||||||
== Secret Path ==
|
|
||||||
secret/data/test
|
|
||||||
|
|
||||||
...
|
|
||||||
```
|
|
||||||
|
|
||||||
Note that the full path is not `secret/test`, but `secret/data/test`.
|
|
||||||
|
|
||||||
## PKI Certificate Requests
|
|
||||||
|
|
||||||
You can use the `pki` option to generate a certificate and private key for a given role.
|
|
||||||
|
|
||||||
````yaml
|
|
||||||
with:
|
|
||||||
pki: |
|
|
||||||
pki/issue/rolename {"common_name": "role.mydomain.com", "ttl": "1h"} ;
|
|
||||||
pki/issue/otherrole {"common_name": "otherrole.mydomain.com", "ttl": "1h"} ;
|
|
||||||
```
|
|
||||||
|
|
||||||
Resulting in:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
ROLENAME_CA=-----BEGIN CERTIFICATE-----...
|
|
||||||
ROLENAME_CERT=-----BEGIN CERTIFICATE-----...
|
|
||||||
ROLENAME_KEY=-----BEGIN RSA PRIVATE KEY-----...
|
|
||||||
ROLENAME_CA_CHAIN=-----BEGIN CERTIFICATE-----...
|
|
||||||
OTHERROLE_CA=-----BEGIN CERTIFICATE-----...
|
|
||||||
OTHERROLE_CERT=-----BEGIN CERTIFICATE-----...
|
|
||||||
OTHERROLE_KEY=-----BEGIN RSA PRIVATE KEY-----...
|
|
||||||
OTHERROLE_CA_CHAIN=-----BEGIN CERTIFICATE-----...
|
|
||||||
````
|
|
||||||
|
|
||||||
## Other Secret Engines
|
## Other Secret Engines
|
||||||
|
|
||||||
Vault Action currently supports retrieving secrets from any engine where secrets
|
Vault Action currently supports retrieving secrets from any engine where secrets
|
||||||
are retrieved via `GET` requests, except for the PKI engine as noted above.
|
are retrieved via `GET` requests. This means secret engines such as PKI are currently
|
||||||
|
not supported due to their requirement of sending parameters along with the request
|
||||||
|
(such as `common_name`).
|
||||||
|
|
||||||
For example, to request a secret from the `cubbyhole` secret engine:
|
For example, to request a secret from the `cubbyhole` secret engine:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
with:
|
with:
|
||||||
secrets: |
|
secrets: |
|
||||||
/cubbyhole/foo foo ;
|
/cubbyhole/foo foo ;
|
||||||
/cubbyhole/foo zip | MY_KEY ;
|
/cubbyhole/foo zip | MY_KEY ;
|
||||||
```
|
```
|
||||||
|
|
||||||
Resulting in:
|
Resulting in:
|
||||||
@@ -492,12 +440,12 @@ If you ever need to add extra headers to the vault request, say if you need to a
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
with:
|
with:
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
secret/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
||||||
secret/data/ci/aws secretKey | AWS_SECRET_ACCESS_KEY
|
secret/ci/aws secretKey | AWS_SECRET_ACCESS_KEY
|
||||||
extraHeaders: |
|
extraHeaders: |
|
||||||
X-Secure-Id: ${{ secrets.SECURE_ID }}
|
X-Secure-Id: ${{ secrets.SECURE_ID }}
|
||||||
X-Secure-Secret: ${{ secrets.SECURE_SECRET }}
|
X-Secure-Secret: ${{ secrets.SECURE_SECRET }}
|
||||||
```
|
```
|
||||||
|
|
||||||
This will automatically add the `x-secure-id` and `x-secure-secret` headers to every request to Vault.
|
This will automatically add the `x-secure-id` and `x-secure-secret` headers to every request to Vault.
|
||||||
@@ -515,37 +463,19 @@ parameter specifying the namespace. In HCP Vault, the namespace defaults to `adm
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
steps:
|
steps:
|
||||||
# ...
|
# ...
|
||||||
- name: Import Secrets
|
- name: Import Secrets
|
||||||
uses: hashicorp/vault-action
|
uses: hashicorp/vault-action
|
||||||
with:
|
with:
|
||||||
url: https://vault-enterprise.mycompany.com:8200
|
url: https://vault-enterprise.mycompany.com:8200
|
||||||
method: token
|
caCertificate: ${{ secrets.VAULT_CA_CERT }}
|
||||||
token: ${{ secrets.VAULT_TOKEN }}
|
method: token
|
||||||
namespace: admin
|
token: ${{ secrets.VAULT_TOKEN }}
|
||||||
secrets: |
|
namespace: admin
|
||||||
secret/data/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
secrets: |
|
||||||
secret/data/ci/aws secretKey | AWS_SECRET_ACCESS_KEY ;
|
secret/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
||||||
secret/data/ci npm_token
|
secret/ci/aws secretKey | AWS_SECRET_ACCESS_KEY ;
|
||||||
```
|
secret/ci npm_token
|
||||||
|
|
||||||
Alternatively, you may need to authenticate to the root namespace and retrieve
|
|
||||||
a secret from a different namespace. To do this, do not set the `namespace`
|
|
||||||
parameter. Instead set the namespace in the secret path. For example, `<NAMESPACE>/secret/data/app`:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
steps:
|
|
||||||
# ...
|
|
||||||
- name: Import Secrets
|
|
||||||
uses: hashicorp/vault-action
|
|
||||||
with:
|
|
||||||
url: https://vault-enterprise.mycompany.com:8200
|
|
||||||
method: token
|
|
||||||
token: ${{ secrets.VAULT_TOKEN }}
|
|
||||||
secrets: |
|
|
||||||
namespace-1/secret/data/ci/aws accessKey | AWS_ACCESS_KEY_ID ;
|
|
||||||
namespace-1/secret/data/ci/aws secretKey | AWS_SECRET_ACCESS_KEY ;
|
|
||||||
namespace-1/secret/data/ci npm_token
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Reference
|
## Reference
|
||||||
@@ -630,7 +560,8 @@ Password for key stored in `jwtPrivateKey` (if needed).
|
|||||||
|
|
||||||
### `jwtGithubAudience`
|
### `jwtGithubAudience`
|
||||||
|
|
||||||
**Type: `string`**
|
**Type: `string`**\
|
||||||
|
**Default: `sigstore`**
|
||||||
|
|
||||||
Identifies the recipient ("aud" claim) that the JWT is intended for.
|
Identifies the recipient ("aud" claim) that the JWT is intended for.
|
||||||
|
|
||||||
@@ -737,10 +668,9 @@ To make it simpler to consume certain secrets as env vars, if no Env/Output Var
|
|||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
If you wish to contribute to this project, the following dependencies are recommended for local development:
|
If you wish to contribute to this project, the following dependencies are recommended for local development:
|
||||||
|
|
||||||
- [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) to install dependencies, build project and run tests
|
- [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) to install dependencies, build project and run tests
|
||||||
- [docker](https://docs.docker.com/get-docker/) to run the pre-configured vault containers for acceptance tests
|
- [docker](https://docs.docker.com/get-docker/) to run the pre-configured vault containers for acceptance tests
|
||||||
- [docker compose](https://docs.docker.com/compose/) to spin up the pre-configured vault containers for acceptance tests
|
- [docker-compose](https://docs.docker.com/compose/) to spin up the pre-configured vault containers for acceptance tests
|
||||||
- [act](https://github.com/nektos/act) to run the vault-action locally
|
- [act](https://github.com/nektos/act) to run the vault-action locally
|
||||||
|
|
||||||
### Build
|
### Build
|
||||||
@@ -753,11 +683,11 @@ $ npm install && npm run build
|
|||||||
|
|
||||||
### Vault test instance
|
### Vault test instance
|
||||||
|
|
||||||
The Github Action needs access to a working Vault instance to function.
|
The Github Action needs access to a working Vault instance to function.
|
||||||
Multiple docker configurations are available via the docker-compose.yml file to run containers compatible with the various acceptance test suites.
|
Multiple docker configurations are available via the docker-compose.yml file to run containers compatible with the various acceptance test suites.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ docker compose up -d vault # Choose one of: vault, vault-enterprise, vault-tls depending on which tests you would like to run
|
$ docker-compose up -d vault # Choose one of: vault, vault-enterprise, vault-tls depending on which tests you would like to run
|
||||||
```
|
```
|
||||||
|
|
||||||
Instead of using one of the dockerized instance, you can also use your own local or remote Vault instance by exporting these environment variables:
|
Instead of using one of the dockerized instance, you can also use your own local or remote Vault instance by exporting these environment variables:
|
||||||
|
|||||||
+1
-7
@@ -1,6 +1,3 @@
|
|||||||
# Copyright IBM Corp. 2019, 2026
|
|
||||||
# SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
name: 'HashiCorp Vault'
|
name: 'HashiCorp Vault'
|
||||||
description: 'A Github Action that allows you to consume HashiCorp Vault™ secrets as secure environment variables'
|
description: 'A Github Action that allows you to consume HashiCorp Vault™ secrets as secure environment variables'
|
||||||
inputs:
|
inputs:
|
||||||
@@ -10,9 +7,6 @@ inputs:
|
|||||||
secrets:
|
secrets:
|
||||||
description: 'A semicolon-separated list of secrets to retrieve. These will automatically be converted to environmental variable keys. See README for more details'
|
description: 'A semicolon-separated list of secrets to retrieve. These will automatically be converted to environmental variable keys. See README for more details'
|
||||||
required: false
|
required: false
|
||||||
pki:
|
|
||||||
description: 'A semicolon-separated list of certificates to generate. These will automatically be converted to environment variable keys. Cannot be used with "secrets". See README for more details'
|
|
||||||
required: false
|
|
||||||
namespace:
|
namespace:
|
||||||
description: 'The Vault namespace from which to query secrets. Vault Enterprise only, unset by default'
|
description: 'The Vault namespace from which to query secrets. Vault Enterprise only, unset by default'
|
||||||
required: false
|
required: false
|
||||||
@@ -100,7 +94,7 @@ inputs:
|
|||||||
required: false
|
required: false
|
||||||
default: 'false'
|
default: 'false'
|
||||||
runs:
|
runs:
|
||||||
using: 'node24'
|
using: 'node20'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
branding:
|
branding:
|
||||||
icon: 'unlock'
|
icon: 'unlock'
|
||||||
|
|||||||
Vendored
+9068
-13954
File diff suppressed because one or more lines are too long
Vendored
+3
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"type": "module"
|
||||||
|
}
|
||||||
+8
-38
@@ -1,63 +1,33 @@
|
|||||||
# Copyright IBM Corp. 2019, 2026
|
|
||||||
# SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
# Start vault server locally for the purposes of integration tests.
|
# Start vault server locally for the purposes of integration tests.
|
||||||
version: "3.0"
|
version: "3.0"
|
||||||
services:
|
services:
|
||||||
vault:
|
vault:
|
||||||
image: hashicorp/vault:2.0.0
|
image: hashicorp/vault:latest
|
||||||
environment:
|
environment:
|
||||||
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
||||||
SKIP_SETCAP: "true"
|
|
||||||
VAULT_LOCAL_CONFIG: '{"disable_mlock": true}'
|
|
||||||
ports:
|
ports:
|
||||||
- 8200:8200
|
- 8200:8200
|
||||||
privileged: true
|
privileged: true
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "VAULT_ADDR=http://127.0.0.1:8200 vault status"]
|
|
||||||
interval: 1s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
vault-enterprise:
|
vault-enterprise:
|
||||||
image: hashicorp/vault-enterprise:2.0-ent
|
image: hashicorp/vault-enterprise:latest
|
||||||
environment:
|
environment:
|
||||||
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
||||||
VAULT_LICENSE: ${VAULT_LICENSE_CI}
|
VAULT_LICENSE: ${VAULT_LICENSE_CI}
|
||||||
SKIP_SETCAP: "true"
|
|
||||||
VAULT_LOCAL_CONFIG: '{"disable_mlock": true}'
|
|
||||||
ports:
|
ports:
|
||||||
- 8200:8200
|
- 8200:8200
|
||||||
privileged: true
|
privileged: true
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "VAULT_ADDR=http://127.0.0.1:8200 vault status"]
|
|
||||||
interval: 1s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 30
|
|
||||||
vault-tls:
|
vault-tls:
|
||||||
image: hashicorp/vault:2.0.0
|
image: hashicorp/vault:latest
|
||||||
hostname: vault-tls
|
hostname: vault-tls
|
||||||
environment:
|
environment:
|
||||||
# Used by the vault CLI in the healthcheck to trust the CA
|
|
||||||
VAULT_CAPATH: /etc/vault/ca.crt
|
VAULT_CAPATH: /etc/vault/ca.crt
|
||||||
SKIP_SETCAP: "true"
|
|
||||||
VAULT_LOCAL_CONFIG: '{"disable_mlock": true}'
|
|
||||||
ports:
|
ports:
|
||||||
- 8200:8200
|
- 8200:8200
|
||||||
privileged: true
|
privileged: true
|
||||||
healthcheck:
|
|
||||||
# Exit 2 means sealed-but-running, which is acceptable during startup
|
|
||||||
test:
|
|
||||||
- CMD-SHELL
|
|
||||||
- |
|
|
||||||
export VAULT_ADDR=https://127.0.0.1:8200 VAULT_CACERT=/etc/vault/ca.crt VAULT_CLIENT_CERT=/etc/vault/client.crt VAULT_CLIENT_KEY=/etc/vault/client.key
|
|
||||||
vault status; s=$$?; [ $$s -eq 0 ] || [ $$s -eq 2 ]
|
|
||||||
interval: 1s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 30
|
|
||||||
volumes:
|
volumes:
|
||||||
# Certs generated by scripts/gen-tls-certs.sh into .build/certs/
|
- ${PWD}/integrationTests/e2e-tls/configs:/etc/vault
|
||||||
- ${PWD}/.build/certs:/etc/vault
|
- vault-data:/var/lib/vault:rw
|
||||||
# tmpfs gives the non-root vault user write access without chown tricks;
|
|
||||||
# ephemeral storage is fine since tests always reinitialize vault from scratch
|
|
||||||
tmpfs: /var/lib/vault
|
|
||||||
entrypoint: vault server -config=/etc/vault/config.hcl
|
entrypoint: vault server -config=/etc/vault/config.hcl
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
vault-data:
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/**
|
import { vi, describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
jest.mock('@actions/core');
|
vi.mock('@actions/core');
|
||||||
jest.mock('@actions/core/lib/command');
|
import core from '@actions/core';
|
||||||
const core = require('@actions/core');
|
|
||||||
|
|
||||||
const got = require('got');
|
import got from 'got';
|
||||||
const { when } = require('jest-when');
|
import { when } from 'jest-when'
|
||||||
|
|
||||||
const { exportSecrets } = require('../../src/action');
|
import { exportSecrets } from '../../src/action.js';
|
||||||
|
|
||||||
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
|
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
|
||||||
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
||||||
@@ -107,7 +103,7 @@ describe('authenticate with approle', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('method', expect.anything())
|
.calledWith('method', expect.anything())
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/**
|
import { vi, describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
jest.mock('@actions/core');
|
vi.mock('@actions/core');
|
||||||
jest.mock('@actions/core/lib/command');
|
import core from '@actions/core';
|
||||||
const core = require('@actions/core');
|
|
||||||
|
|
||||||
const got = require('got');
|
import got from 'got';
|
||||||
const { when } = require('jest-when');
|
import { when } from 'jest-when'
|
||||||
|
|
||||||
const { exportSecrets } = require('../../src/action');
|
import { exportSecrets } from '../../src/action.js';
|
||||||
|
|
||||||
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
|
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
|
||||||
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
||||||
@@ -36,22 +32,6 @@ describe('integration', () => {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
await got(`${vaultUrl}/v1/secret/data/test-with-dot-char`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'X-Vault-Token': vaultToken,
|
|
||||||
},
|
|
||||||
body: `{"data":{"secret.foo":"SUPERSECRET"}}`
|
|
||||||
});
|
|
||||||
|
|
||||||
await got(`${vaultUrl}/v1/secret/data/test-with-multi-dot-chars`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'X-Vault-Token': vaultToken,
|
|
||||||
},
|
|
||||||
body: `{"data":{"secret.foo.bar":"SUPERSECRET"}}`
|
|
||||||
});
|
|
||||||
|
|
||||||
await got(`${vaultUrl}/v1/secret/data/nested/test`, {
|
await got(`${vaultUrl}/v1/secret/data/nested/test`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
@@ -125,73 +105,10 @@ describe('integration', () => {
|
|||||||
"other-Secret-dash": 'OTHERCUSTOMSECRET',
|
"other-Secret-dash": 'OTHERCUSTOMSECRET',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// Enable pki engine
|
|
||||||
try {
|
|
||||||
await got(`${vaultUrl}/v1/sys/mounts/pki`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'X-Vault-Token': vaultToken,
|
|
||||||
},
|
|
||||||
json: {
|
|
||||||
type: 'pki'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
const {response} = error;
|
|
||||||
if (response.statusCode === 400 && response.body.includes("path is already in use")) {
|
|
||||||
// Engine might already be enabled from previous test runs
|
|
||||||
} else {
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Configure Root CA
|
|
||||||
try {
|
|
||||||
await got(`${vaultUrl}/v1/pki/root/generate/internal`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'X-Vault-Token': vaultToken,
|
|
||||||
},
|
|
||||||
json: {
|
|
||||||
common_name: 'test',
|
|
||||||
ttl: '24h',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
const {response} = error;
|
|
||||||
if (response.statusCode === 400 && response.body.includes("already exists")) {
|
|
||||||
// Root CA might already be configured from previous test runs
|
|
||||||
} else {
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Configure PKI Role
|
|
||||||
try {
|
|
||||||
await got(`${vaultUrl}/v1/pki/roles/Test`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'X-Vault-Token': vaultToken,
|
|
||||||
},
|
|
||||||
json: {
|
|
||||||
allowed_domains: ['test'],
|
|
||||||
allow_bare_domains: true,
|
|
||||||
max_ttl: '1h',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
const {response} = error;
|
|
||||||
if (response.statusCode === 400 && response.body.includes("already exists")) {
|
|
||||||
// Role might already be configured from previous test runs
|
|
||||||
} else {
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('url', expect.anything())
|
.calledWith('url', expect.anything())
|
||||||
@@ -208,12 +125,6 @@ describe('integration', () => {
|
|||||||
.mockReturnValueOnce(secrets);
|
.mockReturnValueOnce(secrets);
|
||||||
}
|
}
|
||||||
|
|
||||||
function mockPkiInput(pki) {
|
|
||||||
when(core.getInput)
|
|
||||||
.calledWith('pki', expect.anything())
|
|
||||||
.mockReturnValueOnce(pki);
|
|
||||||
}
|
|
||||||
|
|
||||||
function mockIgnoreNotFound(shouldIgnore) {
|
function mockIgnoreNotFound(shouldIgnore) {
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('ignoreNotFound', expect.anything())
|
.calledWith('ignoreNotFound', expect.anything())
|
||||||
@@ -244,19 +155,6 @@ describe('integration', () => {
|
|||||||
expect(core.exportVariable).toBeCalledWith('NAMED_SECRET', 'SUPERSECRET');
|
expect(core.exportVariable).toBeCalledWith('NAMED_SECRET', 'SUPERSECRET');
|
||||||
})
|
})
|
||||||
|
|
||||||
it('gets a pki certificate', async () => {
|
|
||||||
mockPkiInput('pki/issue/Test {"common_name":"test","ttl":"1h"}');
|
|
||||||
|
|
||||||
await exportSecrets();
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledTimes(4);
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledWith('TEST_KEY', expect.anything());
|
|
||||||
expect(core.exportVariable).toBeCalledWith('TEST_CERT', expect.anything());
|
|
||||||
expect(core.exportVariable).toBeCalledWith('TEST_CA', expect.anything());
|
|
||||||
expect(core.exportVariable).toBeCalledWith('TEST_CA_CHAIN', expect.anything());
|
|
||||||
});
|
|
||||||
|
|
||||||
it('get simple secret', async () => {
|
it('get simple secret', async () => {
|
||||||
mockInput('secret/data/test secret');
|
mockInput('secret/data/test secret');
|
||||||
|
|
||||||
@@ -296,26 +194,6 @@ describe('integration', () => {
|
|||||||
expect(core.exportVariable).toBeCalledWith('OTHERSECRETDASH', 'OTHERSUPERSECRET');
|
expect(core.exportVariable).toBeCalledWith('OTHERSECRETDASH', 'OTHERSUPERSECRET');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('get wildcard secrets with dot char', async () => {
|
|
||||||
mockInput(`secret/data/test-with-dot-char * ;`);
|
|
||||||
|
|
||||||
await exportSecrets();
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledTimes(1);
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledWith('SECRET__FOO', 'SUPERSECRET');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('get secrets with multiple dot chars', async () => {
|
|
||||||
mockInput(`secret/data/test-with-multi-dot-chars * ;`);
|
|
||||||
|
|
||||||
await exportSecrets();
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledTimes(1);
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledWith('SECRET__FOO__BAR', 'SUPERSECRET');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('get wildcard secrets', async () => {
|
it('get wildcard secrets', async () => {
|
||||||
mockInput(`secret/data/test * ;`);
|
mockInput(`secret/data/test * ;`);
|
||||||
|
|
||||||
@@ -418,7 +296,7 @@ describe('integration', () => {
|
|||||||
expect(core.exportVariable).toBeCalledWith('FOO', 'bar');
|
expect(core.exportVariable).toBeCalledWith('FOO', 'bar');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('wildcard supports cubbyhole with uppercase transform', async () => {
|
it('wildcard supports cubbyhole', async () => {
|
||||||
mockInput('/cubbyhole/test *');
|
mockInput('/cubbyhole/test *');
|
||||||
|
|
||||||
await exportSecrets();
|
await exportSecrets();
|
||||||
@@ -428,32 +306,6 @@ describe('integration', () => {
|
|||||||
expect(core.exportVariable).toBeCalledWith('FOO', 'bar');
|
expect(core.exportVariable).toBeCalledWith('FOO', 'bar');
|
||||||
expect(core.exportVariable).toBeCalledWith('ZIP', 'zap');
|
expect(core.exportVariable).toBeCalledWith('ZIP', 'zap');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('wildcard supports cubbyhole with no change in case', async () => {
|
|
||||||
mockInput('/cubbyhole/test **');
|
|
||||||
|
|
||||||
await exportSecrets();
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledTimes(2);
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledWith('foo', 'bar');
|
|
||||||
expect(core.exportVariable).toBeCalledWith('zip', 'zap');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('wildcard supports cubbyhole with mixed case change', async () => {
|
|
||||||
mockInput(`
|
|
||||||
/cubbyhole/test * ;
|
|
||||||
/cubbyhole/test **`);
|
|
||||||
|
|
||||||
await exportSecrets();
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledTimes(4);
|
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledWith('FOO', 'bar');
|
|
||||||
expect(core.exportVariable).toBeCalledWith('ZIP', 'zap');
|
|
||||||
expect(core.exportVariable).toBeCalledWith('foo', 'bar');
|
|
||||||
expect(core.exportVariable).toBeCalledWith('zip', 'zap');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('caches responses', async () => {
|
it('caches responses', async () => {
|
||||||
mockInput(`
|
mockInput(`
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
verbose: true
|
|
||||||
};
|
|
||||||
@@ -1,22 +1,18 @@
|
|||||||
/**
|
import { vi, describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
jest.mock('@actions/core');
|
vi.mock('@actions/core');
|
||||||
jest.mock('@actions/core/lib/command');
|
import core from '@actions/core';
|
||||||
const core = require('@actions/core');
|
import rsasign from 'jsrsasign';
|
||||||
const rsasign = require('jsrsasign');
|
import {
|
||||||
const {
|
|
||||||
privateRsaKey,
|
privateRsaKey,
|
||||||
privateRsaKeyBase64,
|
privateRsaKeyBase64,
|
||||||
publicRsaKey
|
publicRsaKey
|
||||||
} = require('./rsa_keys');
|
} from './rsa_keys.js';
|
||||||
|
|
||||||
const got = require('got');
|
import got from 'got';
|
||||||
const { when } = require('jest-when');
|
import { when } from 'jest-when'
|
||||||
|
|
||||||
const { exportSecrets } = require('../../src/action');
|
import { exportSecrets } from '../../src/action.js';
|
||||||
|
|
||||||
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
|
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
|
||||||
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
||||||
@@ -102,8 +98,6 @@ describe('jwt auth', () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// write the jwt config, the jwt role will be written on a per-test
|
|
||||||
// basis since the audience may vary
|
|
||||||
await got(`${vaultUrl}/v1/auth/jwt/config`, {
|
await got(`${vaultUrl}/v1/auth/jwt/config`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
@@ -115,6 +109,22 @@ describe('jwt auth', () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
await got(`${vaultUrl}/v1/auth/jwt/role/default`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'X-Vault-Token': vaultToken,
|
||||||
|
},
|
||||||
|
json: {
|
||||||
|
role_type: 'jwt',
|
||||||
|
bound_audiences: null,
|
||||||
|
bound_claims: {
|
||||||
|
iss: 'vault-action'
|
||||||
|
},
|
||||||
|
user_claim: 'iss',
|
||||||
|
policies: ['reader']
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
await got(`${vaultUrl}/v1/secret/data/test`, {
|
await got(`${vaultUrl}/v1/secret/data/test`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
@@ -129,26 +139,8 @@ describe('jwt auth', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('authenticate with private key', () => {
|
describe('authenticate with private key', () => {
|
||||||
beforeAll(async () => {
|
|
||||||
await got(`${vaultUrl}/v1/auth/jwt/role/default`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'X-Vault-Token': vaultToken,
|
|
||||||
},
|
|
||||||
json: {
|
|
||||||
role_type: 'jwt',
|
|
||||||
bound_audiences: null,
|
|
||||||
bound_claims: {
|
|
||||||
iss: 'vault-action'
|
|
||||||
},
|
|
||||||
user_claim: 'iss',
|
|
||||||
policies: ['reader']
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('url', expect.anything())
|
.calledWith('url', expect.anything())
|
||||||
@@ -179,22 +171,6 @@ describe('jwt auth', () => {
|
|||||||
|
|
||||||
describe('authenticate with Github OIDC', () => {
|
describe('authenticate with Github OIDC', () => {
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
await got(`${vaultUrl}/v1/auth/jwt/role/default`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'X-Vault-Token': vaultToken,
|
|
||||||
},
|
|
||||||
json: {
|
|
||||||
role_type: 'jwt',
|
|
||||||
bound_audiences: 'https://github.com/hashicorp/vault-action',
|
|
||||||
bound_claims: {
|
|
||||||
iss: 'vault-action'
|
|
||||||
},
|
|
||||||
user_claim: 'iss',
|
|
||||||
policies: ['reader']
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
await got(`${vaultUrl}/v1/auth/jwt/role/default-sigstore`, {
|
await got(`${vaultUrl}/v1/auth/jwt/role/default-sigstore`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
@@ -202,7 +178,7 @@ describe('jwt auth', () => {
|
|||||||
},
|
},
|
||||||
json: {
|
json: {
|
||||||
role_type: 'jwt',
|
role_type: 'jwt',
|
||||||
bound_audiences: 'sigstore',
|
bound_audiences: null,
|
||||||
bound_claims: {
|
bound_claims: {
|
||||||
iss: 'vault-action',
|
iss: 'vault-action',
|
||||||
aud: 'sigstore',
|
aud: 'sigstore',
|
||||||
@@ -214,7 +190,7 @@ describe('jwt auth', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('url', expect.anything())
|
.calledWith('url', expect.anything())
|
||||||
|
|||||||
@@ -1,8 +1,3 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
const privateRsaKey = `
|
const privateRsaKey = `
|
||||||
-----BEGIN RSA PRIVATE KEY-----
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
MIIEowIBAAKCAQEArcch89X6VuWj/CQtVfaCXUl0Pcv8IJRgICN8X+3zFNrbiTdh
|
MIIEowIBAAKCAQEArcch89X6VuWj/CQtVfaCXUl0Pcv8IJRgICN8X+3zFNrbiTdh
|
||||||
@@ -47,7 +42,7 @@ LrJEY9tZaRF8xraMZiOcBcyAt6S/TS29HttJ6+zlhcWx34fItEZ8jA5gzhTmspOY
|
|||||||
-----END PUBLIC KEY-----
|
-----END PUBLIC KEY-----
|
||||||
`;
|
`;
|
||||||
|
|
||||||
module.exports = {
|
export {
|
||||||
privateRsaKey,
|
privateRsaKey,
|
||||||
privateRsaKeyBase64,
|
privateRsaKeyBase64,
|
||||||
publicRsaKey
|
publicRsaKey
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/**
|
import { vi, describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
jest.mock('@actions/core');
|
vi.mock('@actions/core');
|
||||||
jest.mock('@actions/core/lib/command');
|
import core from '@actions/core';
|
||||||
const core = require('@actions/core');
|
|
||||||
|
|
||||||
const got = require('got');
|
import got from 'got';
|
||||||
const { when } = require('jest-when');
|
import { when } from 'jest-when'
|
||||||
|
|
||||||
const { exportSecrets } = require('../../src/action');
|
import { exportSecrets } from '../../src/action.js';
|
||||||
|
|
||||||
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
|
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
|
||||||
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
||||||
@@ -89,7 +85,7 @@ describe('authenticate with userpass', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('method', expect.anything())
|
.calledWith('method', expect.anything())
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import { defineConfig, configDefaults } from 'vitest/config'
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
test: {
|
||||||
|
// required to make jest-when work with vitest
|
||||||
|
globals: true,
|
||||||
|
include: [
|
||||||
|
'**/integrationTests/basic/**.{test,spec}.?(c|m)[jt]s?(x)',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
})
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEFjCCAv6gAwIBAgIUe0i7/HGZKvbDb30L9mC99KXFwj8wDQYJKoZIhvcNAQEL
|
||||||
|
BQAwgaIxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH
|
||||||
|
Ew1TYW4gRnJhbmNpc2NvMRIwEAYDVQQKEwlIYXNoaUNvcnAxIzAhBgNVBAsTGlRl
|
||||||
|
c3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MS0wKwYDVQQDEyRQcm90b3R5cGUgVGVz
|
||||||
|
dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMjAwODA1MTg1MjAwWhcNMjUwODA0
|
||||||
|
MTg1MjAwWjCBojELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAU
|
||||||
|
BgNVBAcTDVNhbiBGcmFuY2lzY28xEjAQBgNVBAoTCUhhc2hpQ29ycDEjMCEGA1UE
|
||||||
|
CxMaVGVzdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxLTArBgNVBAMTJFByb3RvdHlw
|
||||||
|
ZSBUZXN0IENlcnRpZmljYXRlIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQAD
|
||||||
|
ggEPADCCAQoCggEBAMrRXuu2+zhBs0pLYEdXIaPc4KoWO3xm2RJdbzy3hfjFybQ8
|
||||||
|
H/Y6Hi7txjGGSb45xSfXT/RF2srNfs235I+sfB8rrEizNpzkXqOgGa8LKvh2tgBT
|
||||||
|
BK/jDWsEdDhxmkpFhE69wEW+D5ub7QGnx9jrqLKfwCmUA0utlzcFBk2nRNhRtsrp
|
||||||
|
CI5YL1VN4coLpgXdvbodzbynPzGHe9R/o9K0Uiz2hgHooyKwhkVYwo0BIAQamLFz
|
||||||
|
TS7lyeLf0thDOxV31NX8SpSucqRf50WHNk8T/YtKZ9EhlBDT4ybZwwvcC/ocxxcg
|
||||||
|
1LvB0YweZNjSeO78S4CMh1TFGXnF/xOtGABlIbcCAwEAAaNCMEAwDgYDVR0PAQH/
|
||||||
|
BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFABD/NxvYLpo5zVNeD01
|
||||||
|
r8IIFYlBMA0GCSqGSIb3DQEBCwUAA4IBAQB7TfpIx53gf/oI3mgR6Ciz287WBzFR
|
||||||
|
OzhJXwHk5J3mx8VC1W8tDRXih2lCLd/f9qDy6LyL/hZcoonev6w9oReuOMBiH6l4
|
||||||
|
Pf3yq2aDXX0AoGgm75c1m34kY669JLMsHq5+xuUDeeFUMd60w9zVtZfBSumy/sgN
|
||||||
|
PdjtvThh8sSByocYULs3tuxZDGyQ6GyQcn/xlMrGtmcD5IuX5IXqcKRVlZttykNx
|
||||||
|
S2ltcR00fekw8WZyPSzMJaP+/Kcq3T2viN02MS6qEycQZoYfEAMdj+A0kjbsZG9D
|
||||||
|
6J92z78b2DuLAUvZVpynNk/UbpDeqIDy40V3JDmtvrfGUMkMhMqgK/+J
|
||||||
|
-----END CERTIFICATE-----
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIENTCCAx2gAwIBAgIUMu5h1ysA5DlM6lzZFliT2C2n4lEwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwgaIxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH
|
||||||
|
Ew1TYW4gRnJhbmNpc2NvMRIwEAYDVQQKEwlIYXNoaUNvcnAxIzAhBgNVBAsTGlRl
|
||||||
|
c3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MS0wKwYDVQQDEyRQcm90b3R5cGUgVGVz
|
||||||
|
dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwIBcNMjAwODA1MTg1MjAwWhgPMjEyMDA3
|
||||||
|
MTIxODUyMDBaMIGMMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEW
|
||||||
|
MBQGA1UEBxMNU2FuIEZyYW5jaXNjbzESMBAGA1UEChMJSGFzaGlDb3JwMSMwIQYD
|
||||||
|
VQQLExpUZXN0IENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAxMOaGFzaGlj
|
||||||
|
b3JwLnRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC/zYDKdDGo
|
||||||
|
+Qy7eJUNjOe6jpeGvK1lMu5T1Xka+h2ay6WH5gLyrPw5pi582iYpJdHVbplKMywx
|
||||||
|
LxZv7mAbKNxqdp8UZKy0A3bCuHQqRF8ssXXHufQ8EGxNkLMLJP0e2q39OnrxXekS
|
||||||
|
8Ct3aJm3V8qkcV3CpVdPNgJh4TSuneCXIxVWjFYSiyHi0/5TRd2D+aQPz12szg5F
|
||||||
|
mBW4dLzYKHEMlWcjWG8mxtbLyt+jSR1+tSehQx7KndufdfniOWEDBdbeR3yDnZdn
|
||||||
|
p8DnRWK4oaEI3Sl8tKlDd1Yp+R96aqOEn1tPW6Jy6Vdvk3fCefclbWZ6B9kiJ/1r
|
||||||
|
gxq7AN7iKmHNAgMBAAGjdTBzMA4GA1UdDwEB/wQEAwIFoDATBgNVHSUEDDAKBggr
|
||||||
|
BgEFBQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRn2mwyk+MPChnLg0iWy1r9
|
||||||
|
b3JvwTAfBgNVHSMEGDAWgBQAQ/zcb2C6aOc1TXg9Na/CCBWJQTANBgkqhkiG9w0B
|
||||||
|
AQsFAAOCAQEAOpCy0vHp1Kxgv0VBRrbrwSQLBGP8a1ubVWoeoZQ+EvX9ozqDrHxm
|
||||||
|
gM4XPYUJlUOOEu0ZRgCW60YK33E1zNKnA1F0/3/rmqMkKnm0BBs/5WzMWtsIBPcU
|
||||||
|
e0CeJmaRIXnERQMH/svD+RrFo1dcF8rUDIlWez7+xGqoIGBg7v4jEmkZ3HdckcE+
|
||||||
|
/xvC61YSG8NsJwR/CEcQ8YCyVfgvuS0ukWs4dN15aVDL3Oe61h3bRcGAywOJBrdq
|
||||||
|
9xaq7ezZp/+lUSkYnatWJBuC/aviH9g9s+gMT0I3fWHh8BB0Ne2txwJ15K/qz5he
|
||||||
|
TjxFsumrh50aFqjSiEHndtY5UWuGAFLiSw==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEpAIBAAKCAQEAv82AynQxqPkMu3iVDYznuo6XhrytZTLuU9V5Gvodmsulh+YC
|
||||||
|
8qz8OaYufNomKSXR1W6ZSjMsMS8Wb+5gGyjcanafFGSstAN2wrh0KkRfLLF1x7n0
|
||||||
|
PBBsTZCzCyT9Htqt/Tp68V3pEvArd2iZt1fKpHFdwqVXTzYCYeE0rp3glyMVVoxW
|
||||||
|
Eosh4tP+U0Xdg/mkD89drM4ORZgVuHS82ChxDJVnI1hvJsbWy8rfo0kdfrUnoUMe
|
||||||
|
yp3bn3X54jlhAwXW3kd8g52XZ6fA50ViuKGhCN0pfLSpQ3dWKfkfemqjhJ9bT1ui
|
||||||
|
culXb5N3wnn3JW1megfZIif9a4MauwDe4iphzQIDAQABAoIBAQCYHJuidAoaTwGZ
|
||||||
|
ACV9rJzuqD1lvubpFj5KwEcebPPjmtQ5deIqoaQa+D9wBvYyteq3ENKDNRg8HXL2
|
||||||
|
7B7OC1bbHB5HZxxMW17pSK3gA39Ti52z+zbGF+Q8k6BbG0efG6DW7nUoTOkWeuCN
|
||||||
|
/6fA7uAoEDxirQwUJuo2xAsq3MyMLwcs95rke9Bly8ABFNaV1oMZq8YT/w8oSc2b
|
||||||
|
/7WtxXmChHlVYXTcMqzVPqNFqPRixZRWQ+BSHoXmEDviuGd51L4s9D7iXp32TvUx
|
||||||
|
DMHeS1DFA2en7ZF1uc9VXZeplkkDtVhUe4d6qOqCcUwDFEvMonnyVSa6/FkR5jYZ
|
||||||
|
2yujTdfhAoGBAM0hGOnmnDnCjADUt4mZlr+Mf0XmdKzEV+hid4CQUvBoTXgjYMvv
|
||||||
|
c397eNePce7SwSUE1/APERInGUPhRLVFW5q6/34WRtGBbQkT8ByeJANXes4UFZe3
|
||||||
|
wdNLczWUlSl0G3jTf+Kh3+K5/PtmyxSrAS/9GIk+ibs1mlJOPyVnWqUJAoGBAO9e
|
||||||
|
WlP9/ruXluvkQyM5ZlnAnZYMsFGzzPx4tkazUjurtqxQoyZ0z+pPItGQ7lOl+pDA
|
||||||
|
EWiTun66g+Da9uBiBCJUeXiC1ge2p6bT6N194BrYyrWML9hcIL4mqVojUEUmhnSh
|
||||||
|
6b9h1pC7vFmw5ZFMIIkS60cfBMgQMZxMJN8NuaulAoGBAJM5hwURg90c2ZkbEyPK
|
||||||
|
PVz7fLlxnxoEzcc3LOf0LeLoKXnpgma8VJwRxXiJNs+fKgrkwAtG9QyfTU3f1412
|
||||||
|
2zlhr1ASsv9ZMiXKzpHrmpNfbP+NgLXkqFN7mpPBMZGQCMuemPHTFrpGnODfNTB/
|
||||||
|
T5newIZ4gSgBX+Jk0IOK+47pAoGAeKo6pK6ck9pV5TIbOg18b/AuQG7DD1yxD/CW
|
||||||
|
CkvpP1VPb8vygrdN/FLKPZRu39IC3qdD31DhKXNCeb5Hx1MBvICS/1INLLRCDVIz
|
||||||
|
yDvlFgOFJEG3+LxwcQqyQlMc6s8B5pecarKaZDmPODN5dmZG3HKiEicr1OJ878pe
|
||||||
|
p+aWW1UCgYBmGFbCc1qqlqp+srYGsv3rIgNs5HSfrAjbgY8xh9foMgrYCRAm57gv
|
||||||
|
01yVxMXWmKA6ReVEu8OTVy9fkuOL/vw2o+C6W4IPZYdvSQoPwd5Lf+AqxEQvFF1m
|
||||||
|
tT3SZAM3EhQ7tIXdIQHY27SJ1KlUJMrvUq1CiRWiG/MOKf/87JXPog==
|
||||||
|
-----END RSA PRIVATE KEY-----
|
||||||
@@ -1,6 +1,3 @@
|
|||||||
# Copyright IBM Corp. 2019, 2026
|
|
||||||
# SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
ui = false
|
ui = false
|
||||||
disable_mlock = true
|
disable_mlock = true
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEXjCCA0agAwIBAgIUAswquazrfsyDRvXZwn5718DUhU4wDQYJKoZIhvcNAQEL
|
||||||
|
BQAwgaIxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH
|
||||||
|
Ew1TYW4gRnJhbmNpc2NvMRIwEAYDVQQKEwlIYXNoaUNvcnAxIzAhBgNVBAsTGlRl
|
||||||
|
c3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MS0wKwYDVQQDEyRQcm90b3R5cGUgVGVz
|
||||||
|
dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwIBcNMjAwODA1MTg1MjAwWhgPMjEyMDA3
|
||||||
|
MTIxODUyMDBaMIGMMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEW
|
||||||
|
MBQGA1UEBxMNU2FuIEZyYW5jaXNjbzESMBAGA1UEChMJSGFzaGlDb3JwMSMwIQYD
|
||||||
|
VQQLExpUZXN0IENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAxMOaGFzaGlj
|
||||||
|
b3JwLnRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0azdZsrPC
|
||||||
|
5Rv8nRxVJnLi+oZgCJYgzhCDiEbYqt1QK1gqNXp0ml5ck6ycj0drwzHzrrX+xcPV
|
||||||
|
5FcNKH3RFyon9XkzjwaXkMv6IkgvH6/jQ1dDW9kWBf3Io3Y59wnD/YaIzNK0CYJS
|
||||||
|
fRNdsZb4InH8gh+RL33+FeysgJwXG1TVA4tTUj7DQxDE0cDd9UD+C9Yx7OWiUjC1
|
||||||
|
IjqdFPusX1nziKYjeI5/UiCmOUGqJJRoMPonuzuGIj9GdmBKmga64OfeZFqn4f6a
|
||||||
|
ay61VnGCwZ24VniUwYElsFbcF2Nv9WqnrOeQlHOsYN68VMqHzaYPqE6SPa6mO5mI
|
||||||
|
/tmpXrDG3Y+RAgMBAAGjgZ0wgZowDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoG
|
||||||
|
CCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFE03/UTs2ZmJpWHSmstt
|
||||||
|
hDngW6F3MB8GA1UdIwQYMBaAFABD/NxvYLpo5zVNeD01r8IIFYlBMCUGA1UdEQQe
|
||||||
|
MByCCWxvY2FsaG9zdIIJdmF1bHQtdGxzhwR/AAABMA0GCSqGSIb3DQEBCwUAA4IB
|
||||||
|
AQCzarBGJium5oZDSSP5GqxpS13QP2onEen6I1k2eRdcOqtbfNdQ20RJrb4dfNkE
|
||||||
|
Dc09KWVlZAn+hYge2KKTXJ+4ltIC9V1LvquyWipNczOT1ve0H9gt3Wm88LdESqI5
|
||||||
|
HOx43pIaa3cWXBlbzrFmT1SASYm1V5Oo1mXzpUukGokHLLmAz36VVuJGbD0BxYke
|
||||||
|
5MefG4tNT1SsMsIqVvGxI9NiVs7YTdJu81MctSYK5snsEKnYdi9N7CHOk3bdDpeC
|
||||||
|
v2Vo7XBk3s4sBMGmnJO+1JOcRFJioooEFkqNyQmg3atfInysVbreKS5KtWNTaCPm
|
||||||
|
yI55plW8ga5ucja2VX3WbwAO
|
||||||
|
-----END CERTIFICATE-----
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
MIIEpAIBAAKCAQEAtGs3WbKzwuUb/J0cVSZy4vqGYAiWIM4Qg4hG2KrdUCtYKjV6
|
||||||
|
dJpeXJOsnI9Ha8Mx8661/sXD1eRXDSh90RcqJ/V5M48Gl5DL+iJILx+v40NXQ1vZ
|
||||||
|
FgX9yKN2OfcJw/2GiMzStAmCUn0TXbGW+CJx/IIfkS99/hXsrICcFxtU1QOLU1I+
|
||||||
|
w0MQxNHA3fVA/gvWMezlolIwtSI6nRT7rF9Z84imI3iOf1IgpjlBqiSUaDD6J7s7
|
||||||
|
hiI/RnZgSpoGuuDn3mRap+H+mmsutVZxgsGduFZ4lMGBJbBW3Bdjb/Vqp6znkJRz
|
||||||
|
rGDevFTKh82mD6hOkj2upjuZiP7ZqV6wxt2PkQIDAQABAoIBAQCvK0HsVvLtkSCh
|
||||||
|
HbF6gwAcnHyHFQ8d/rRN4KxYhVynD85j/NRODer8G20F/J6tZDFFlSWinUTMkQxr
|
||||||
|
/BpcPg9yCIWKp50Q30cMLujCyBMvphw9jBmzplGG0h5hnRbgMXDDtYoFvw3HJST+
|
||||||
|
XQRlGpxtO7GGdwPvBD5sJdpnHOQ6g7qIYKmlHM99kHU8vr0VghqZAYxEh8RpnYez
|
||||||
|
NLra+7ep+Zp1pFIniU6B8ohyL3OArbQ65qYrZYriAEI5HeEk0RhjewcPsV56LwbS
|
||||||
|
CncTVS/dNYgk1zRIvytmbDVD3v/4lLvnpIWeKVdk7p1aGJeCdpLeWNvDLX0Ws67r
|
||||||
|
QeZQizwhAoGBAMwAIA6+HPsx+8dhNbN3ydX8YU6uUfSeshhshIFZPIYL2vrKyAHU
|
||||||
|
/GAYVzYJH/cU0IvlLJlLdQuiZkOXEX87tgdfmM/o4Qdl12RR0BvU0Cae0txtzNrP
|
||||||
|
yTdfZqDhTz/V8jOAXUNA5oQA45Y3rI7JES8hBd1F9WFOH2WINp344GzlAoGBAOJo
|
||||||
|
SgmRE24VcnfUMqrBpwZBdBrTxDQyTagvd+MuGomIQfcE2Y4rr1eIuJJ0HF5/eYxc
|
||||||
|
DZRO/LVP9tQ8ozXi2tdmgUdKC79O2edmdOCWW5of464R/TLcM5B4SmS36RtdE3qJ
|
||||||
|
ig4fcUmsJ15MAGpkXLMh5YSD/N3TmcnURtx06Fk9AoGATi+mGcBnnybzFuF9EYHR
|
||||||
|
y7/lE6DgLF8+ZvoAdwralY2pqgFaUslsyO/LTRyGMc66d0OoqkAvZfwiMbmOrTMX
|
||||||
|
ew/6o4Tf6lPwD7UDjAcul/67VlyG7T5CIoTf8r0oAJFhOLf0BrizINiuYX6JFlid
|
||||||
|
y3BerQYJG/gzNFjWhglDCrkCgYA+3wUISRAjNrN10ShMwL/3/b8XIA1RDVMBTEU3
|
||||||
|
gfr+jCb9SIx9bWYgoafXi4TBPRbswjdHIvQMCWuankgYU6m/vQhTWp2Of4AFQS9d
|
||||||
|
moNPdmGMWhR8xidPjAfklimWXq9lDMKYj2SvN64rAmHvKXWQjO4mcVyL4RHIuTkA
|
||||||
|
STqoZQKBgQDKHd8F6tjZHEFolmjS5l682g7zVTpBhozezJ/RqYvhJh5ew1pXoD/O
|
||||||
|
Zu9iMfHoDjR4ZUXq6aeLUj/oIt1AsjwaGChOLLAvFbvePgS9XkYkwIlaxS4efAya
|
||||||
|
+CQE/JmY/a1/c2MDLNMCEXvUqX68pv6iDF8pfn+i4tn0omYqgfUlCA==
|
||||||
|
-----END RSA PRIVATE KEY-----
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
/**
|
import { describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
describe('e2e-tls', () => {
|
describe('e2e-tls', () => {
|
||||||
it('verify', () => {
|
it('verify', () => {
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
verbose: true
|
|
||||||
};
|
|
||||||
@@ -1,10 +1,5 @@
|
|||||||
/**
|
import got from 'got';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
import core from '@actions/core';
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
const got = require('got');
|
|
||||||
const core = require('@actions/core');
|
|
||||||
|
|
||||||
const vaultUrl = `${process.env.VAULT_HOST}:${process.env.VAULT_PORT}`;
|
const vaultUrl = `${process.env.VAULT_HOST}:${process.env.VAULT_PORT}`;
|
||||||
const caCertificateRaw = `${process.env.VAULTCA}`;
|
const caCertificateRaw = `${process.env.VAULTCA}`;
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import { defineConfig, configDefaults } from 'vitest/config'
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
test: {
|
||||||
|
// required to make jest-when work with vitest
|
||||||
|
globals: true,
|
||||||
|
include: [
|
||||||
|
'**/integrationTests/e2e-tls/**.{test,spec}.?(c|m)[jt]s?(x)',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
})
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
/**
|
import { describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
describe('e2e', () => {
|
describe('e2e', () => {
|
||||||
it('verify', () => {
|
it('verify', () => {
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
verbose: true
|
|
||||||
};
|
|
||||||
@@ -1,9 +1,4 @@
|
|||||||
/**
|
import got from 'got';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
const got = require('got');
|
|
||||||
|
|
||||||
const vaultUrl = `${process.env.VAULT_HOST}:${process.env.VAULT_PORT}`;
|
const vaultUrl = `${process.env.VAULT_HOST}:${process.env.VAULT_PORT}`;
|
||||||
const vaultToken = `${process.env.VAULT_TOKEN}` === undefined ? `${process.env.VAULT_TOKEN}` : "testtoken";
|
const vaultToken = `${process.env.VAULT_TOKEN}` === undefined ? `${process.env.VAULT_TOKEN}` : "testtoken";
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import { defineConfig, configDefaults } from 'vitest/config'
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
test: {
|
||||||
|
// required to make jest-when work with vitest
|
||||||
|
globals: true,
|
||||||
|
include: [
|
||||||
|
'**/integrationTests/e2e/**.{test,spec}.?(c|m)[jt]s?(x)',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
})
|
||||||
@@ -1,16 +1,12 @@
|
|||||||
/**
|
import { vi, describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
jest.mock('@actions/core');
|
vi.mock('@actions/core');
|
||||||
jest.mock('@actions/core/lib/command');
|
import core from '@actions/core';
|
||||||
const core = require('@actions/core');
|
|
||||||
|
|
||||||
const got = require('got');
|
import got from 'got';
|
||||||
const { when } = require('jest-when');
|
import { when } from 'jest-when'
|
||||||
|
|
||||||
const { exportSecrets } = require('../../src/action');
|
import { exportSecrets } from '../../src/action.js';
|
||||||
|
|
||||||
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8201'}`;
|
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8201'}`;
|
||||||
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
|
||||||
@@ -46,7 +42,7 @@ describe('integration', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('url', expect.anything())
|
.calledWith('url', expect.anything())
|
||||||
@@ -243,7 +239,7 @@ describe('authenticate with approle', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('method', expect.anything())
|
.calledWith('method', expect.anything())
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
verbose: true
|
|
||||||
};
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import { defineConfig, configDefaults } from 'vitest/config'
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
test: {
|
||||||
|
// required to make jest-when work with vitest
|
||||||
|
globals: true,
|
||||||
|
include: [
|
||||||
|
'**/integrationTests/enterprise/**.{test,spec}.?(c|m)[jt]s?(x)',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
})
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
testPathIgnorePatterns: ['/node_modules/', '<rootDir>/integrationTests/'],
|
|
||||||
};
|
|
||||||
+1
-1
@@ -7,4 +7,4 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es2018"
|
"target": "es2018"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+3521
-1048
File diff suppressed because it is too large
Load Diff
+12
-14
@@ -2,14 +2,15 @@
|
|||||||
"name": "vault-action",
|
"name": "vault-action",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "A Github Action that allows you to consume vault secrets as secure environment variables.",
|
"description": "A Github Action that allows you to consume vault secrets as secure environment variables.",
|
||||||
|
"type": "module",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "ncc build src/entry.js -o dist",
|
"build": "ncc build src/entry.js -o dist",
|
||||||
"test": "jest",
|
"test": "vitest run",
|
||||||
"test:integration:basic": "jest -c integrationTests/basic/jest.config.js",
|
"test:integration:basic": "vitest run -c integrationTests/basic/vitest.config.js",
|
||||||
"test:integration:enterprise": "jest -c integrationTests/enterprise/jest.config.js",
|
"test:integration:enterprise": "vitest run -c integrationTests/enterprise/vitest.config.js",
|
||||||
"test:integration:e2e": "jest -c integrationTests/e2e/jest.config.js",
|
"test:integration:e2e": "vitest run -c integrationTests/e2e/vitest.config.js",
|
||||||
"test:integration:e2e-tls": "jest -c integrationTests/e2e-tls/jest.config.js"
|
"test:integration:e2e-tls": "vitest run -c integrationTests/e2e-tls/vitest.config.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
@@ -34,18 +35,15 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/hashicorp/vault-action#readme",
|
"homepage": "https://github.com/hashicorp/vault-action#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"got": "^11.8.6",
|
"@actions/core": "^1.10.1",
|
||||||
"jsonata": "^2.2.0",
|
"got": "^14.2.1",
|
||||||
"jsrsasign": "^11.1.0"
|
"jsonata": "^2.0.4",
|
||||||
},
|
"jsrsasign": "^11.0.0"
|
||||||
"peerDependencies": {
|
|
||||||
"@actions/core": ">=1 <2"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@actions/core": "^1.10.1",
|
|
||||||
"@vercel/ncc": "^0.38.1",
|
"@vercel/ncc": "^0.38.1",
|
||||||
"jest": "^29.7.0",
|
|
||||||
"jest-when": "^3.6.0",
|
"jest-when": "^3.6.0",
|
||||||
"mock-http-server": "^1.4.5"
|
"mock-http-server": "^1.4.5",
|
||||||
|
"vitest": "^1.3.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
# Copyright IBM Corp. 2019, 2025
|
|
||||||
# SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
# Adapted from: https://github.com/hashicorp/vault-secrets-operator/blob/main/hack/.functions
|
|
||||||
|
|
||||||
# getGH downloads files from GitHub with optional authentication
|
|
||||||
# Usage: getGH <url> [dest_file] [num_retries]
|
|
||||||
function getGH() {
|
|
||||||
local url="$1"
|
|
||||||
local dest="$2"
|
|
||||||
local num_retries="${3:-${GH_GET_RETRIES}}"
|
|
||||||
|
|
||||||
headers=(
|
|
||||||
'--header' "Accept: application/vnd.github+json"
|
|
||||||
'--header' "X-GitHub-Api-Version: 2022-11-28"
|
|
||||||
)
|
|
||||||
if [ -n "${GITHUB_TOKEN}" ]; then
|
|
||||||
headers+=(
|
|
||||||
'--header' "Authorization: Bearer ${GITHUB_TOKEN}"
|
|
||||||
)
|
|
||||||
fi
|
|
||||||
cmd=curl
|
|
||||||
opts=('-sfSL')
|
|
||||||
echo "Fetching ${url}"
|
|
||||||
if [ -z "${dest}" ]; then
|
|
||||||
opts+=('-O')
|
|
||||||
else
|
|
||||||
opts+=('-o' "${dest}")
|
|
||||||
fi
|
|
||||||
if [ -n "${num_retries}" ]; then
|
|
||||||
opts+=('--retry' "${num_retries}")
|
|
||||||
fi
|
|
||||||
${cmd} "${opts[@]}" "${headers[@]}" "${url}"
|
|
||||||
}
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
# Copyright IBM Corp. 2019, 2025
|
|
||||||
# SPDX-License-Identifier: MIT
|
|
||||||
#
|
|
||||||
# Generates a PKI chain (CA, server cert, client cert) using cfssl.
|
|
||||||
# Outputs certs to .build/certs/ and writes .build/e2e-tls.env for local
|
|
||||||
# act usage (act --env-file .build/e2e-tls.env).
|
|
||||||
#
|
|
||||||
# Usage: ./scripts/gen-tls-certs.sh
|
|
||||||
# Requires: cfssl, cfssljson (brew install cfssl)
|
|
||||||
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
pushd "$(git rev-parse --show-toplevel || echo .)" > /dev/null
|
|
||||||
|
|
||||||
OUTDIR=".build/certs"
|
|
||||||
ENVFILE=".build/e2e-tls.env"
|
|
||||||
|
|
||||||
if ! command -v cfssl &>/dev/null || ! command -v cfssljson &>/dev/null; then
|
|
||||||
echo "error: cfssl and cfssljson are required." >&2
|
|
||||||
popd > /dev/null
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
mkdir -p "$OUTDIR"
|
|
||||||
pushd "$OUTDIR" > /dev/null
|
|
||||||
|
|
||||||
# ── cfssl signing config ──────────────────────────────────────────────────────
|
|
||||||
cat > cfssl-config.json <<'EOF'
|
|
||||||
{
|
|
||||||
"signing": {
|
|
||||||
"default": { "expiry": "8760h" },
|
|
||||||
"profiles": {
|
|
||||||
"server": {
|
|
||||||
"usages": ["signing", "key encipherment", "server auth"],
|
|
||||||
"expiry": "8760h"
|
|
||||||
},
|
|
||||||
"client": {
|
|
||||||
"usages": ["signing", "key encipherment", "client auth"],
|
|
||||||
"expiry": "8760h"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# ── CA ────────────────────────────────────────────────────────────────────────
|
|
||||||
echo "Generating CA..."
|
|
||||||
cfssl gencert -initca - <<'EOF' | cfssljson -bare ca
|
|
||||||
{
|
|
||||||
"CN": "Vault Test CA",
|
|
||||||
"key": { "algo": "rsa", "size": 2048 },
|
|
||||||
"ca": { "expiry": "87600h" }
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# ── Server cert ───────────────────────────────────────────────────────────────
|
|
||||||
echo "Generating server certificate..."
|
|
||||||
cfssl gencert \
|
|
||||||
-ca=ca.pem \
|
|
||||||
-ca-key=ca-key.pem \
|
|
||||||
-config=cfssl-config.json \
|
|
||||||
-profile=server - <<'EOF' | cfssljson -bare server
|
|
||||||
{
|
|
||||||
"CN": "vault-tls",
|
|
||||||
"hosts": ["localhost", "127.0.0.1", "vault-tls"],
|
|
||||||
"key": { "algo": "rsa", "size": 2048 }
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# ── Client cert ───────────────────────────────────────────────────────────────
|
|
||||||
echo "Generating client certificate..."
|
|
||||||
cfssl gencert \
|
|
||||||
-ca=ca.pem \
|
|
||||||
-ca-key=ca-key.pem \
|
|
||||||
-config=cfssl-config.json \
|
|
||||||
-profile=client - <<'EOF' | cfssljson -bare client
|
|
||||||
{
|
|
||||||
"CN": "vault-client",
|
|
||||||
"key": { "algo": "rsa", "size": 2048 }
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# ── Rename to names expected by vault config ──────────────────────────────────
|
|
||||||
mv ca.pem ca.crt
|
|
||||||
mv server.pem server.crt
|
|
||||||
mv server-key.pem server.key
|
|
||||||
mv client.pem client.crt
|
|
||||||
mv client-key.pem client.key
|
|
||||||
|
|
||||||
# ── Remove intermediates not needed at runtime ────────────────────────────────
|
|
||||||
rm -f ca.csr server.csr client.csr ca-key.pem cfssl-config.json
|
|
||||||
|
|
||||||
# Ensure files are readable by the vault container user
|
|
||||||
chmod 644 ./*.crt ./*.key
|
|
||||||
|
|
||||||
popd > /dev/null
|
|
||||||
|
|
||||||
# ── Copy vault server config ──────────────────────────────────────────────────
|
|
||||||
cp "integrationTests/e2e-tls/configs/config.hcl" "$OUTDIR/config.hcl"
|
|
||||||
|
|
||||||
# ── Write env file for local act usage ───────────────────────────────────────
|
|
||||||
{
|
|
||||||
printf 'VAULTCA=%s\n' "$(base64 < "$OUTDIR/ca.crt" | tr -d '\n')"
|
|
||||||
printf 'VAULT_CLIENT_CERT=%s\n' "$(base64 < "$OUTDIR/client.crt" | tr -d '\n')"
|
|
||||||
printf 'VAULT_CLIENT_KEY=%s\n' "$(base64 < "$OUTDIR/client.key" | tr -d '\n')"
|
|
||||||
} > "$ENVFILE"
|
|
||||||
|
|
||||||
echo "Certs generated in $OUTDIR"
|
|
||||||
echo "Env file written to $ENVFILE"
|
|
||||||
|
|
||||||
popd > /dev/null
|
|
||||||
+18
-69
@@ -1,17 +1,14 @@
|
|||||||
/**
|
import core from '@actions/core';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
import got from 'got';
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
// @ts-check
|
import { normalizeOutputKey } from './utils.js';
|
||||||
const core = require('@actions/core');
|
import { WILDCARD } from './constants.js';
|
||||||
const command = require('@actions/core/lib/command');
|
import { retrieveToken } from './auth.js';
|
||||||
const got = require('got').default;
|
import { getSecrets } from './secrets.js';
|
||||||
|
|
||||||
|
// ncc doesn't compile jsonata imports properly, so we must use our own custom require
|
||||||
|
import require from "./cjs-require.js";
|
||||||
const jsonata = require('jsonata');
|
const jsonata = require('jsonata');
|
||||||
const { normalizeOutputKey } = require('./utils');
|
|
||||||
const { WILDCARD, WILDCARD_UPPERCASE } = require('./constants');
|
|
||||||
|
|
||||||
const { auth: { retrieveToken }, secrets: { getSecrets }, pki: { getCertificates } } = require('./index');
|
|
||||||
|
|
||||||
const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes', 'ldap', 'userpass'];
|
const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes', 'ldap', 'userpass'];
|
||||||
const ENCODING_TYPES = ['base64', 'hex', 'utf8'];
|
const ENCODING_TYPES = ['base64', 'hex', 'utf8'];
|
||||||
@@ -27,16 +24,6 @@ async function exportSecrets() {
|
|||||||
const secretsInput = core.getInput('secrets', { required: false });
|
const secretsInput = core.getInput('secrets', { required: false });
|
||||||
const secretRequests = parseSecretsInput(secretsInput);
|
const secretRequests = parseSecretsInput(secretsInput);
|
||||||
|
|
||||||
const pkiInput = core.getInput('pki', { required: false });
|
|
||||||
let pkiRequests = [];
|
|
||||||
if (pkiInput) {
|
|
||||||
if (secretsInput) {
|
|
||||||
throw Error('You cannot provide both "secrets" and "pki" inputs.');
|
|
||||||
}
|
|
||||||
|
|
||||||
pkiRequests = parsePkiInput(pkiInput);
|
|
||||||
}
|
|
||||||
|
|
||||||
const secretEncodingType = core.getInput('secretEncodingType', { required: false });
|
const secretEncodingType = core.getInput('secretEncodingType', { required: false });
|
||||||
|
|
||||||
const vaultMethod = (core.getInput('method', { required: false }) || 'token').toLowerCase();
|
const vaultMethod = (core.getInput('method', { required: false }) || 'token').toLowerCase();
|
||||||
@@ -99,12 +86,12 @@ async function exportSecrets() {
|
|||||||
core.exportVariable('VAULT_TOKEN', `${vaultToken}`);
|
core.exportVariable('VAULT_TOKEN', `${vaultToken}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
let results = [];
|
const requests = secretRequests.map(request => {
|
||||||
if (pkiRequests.length > 0) {
|
const { path, selector } = request;
|
||||||
results = await getCertificates(pkiRequests, client);
|
return request;
|
||||||
} else {
|
});
|
||||||
results = await getSecrets(secretRequests, client);
|
|
||||||
}
|
const results = await getSecrets(requests, client);
|
||||||
|
|
||||||
|
|
||||||
for (const result of results) {
|
for (const result of results) {
|
||||||
@@ -143,43 +130,6 @@ async function exportSecrets() {
|
|||||||
* @property {string} selector
|
* @property {string} selector
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Parses a pki input string into key paths and the request parameters.
|
|
||||||
* @param {string} pkiInput
|
|
||||||
*/
|
|
||||||
function parsePkiInput(pkiInput) {
|
|
||||||
if (!pkiInput) {
|
|
||||||
return []
|
|
||||||
}
|
|
||||||
|
|
||||||
const secrets = pkiInput
|
|
||||||
.split(';')
|
|
||||||
.filter(key => !!key)
|
|
||||||
.map(key => key.trim())
|
|
||||||
.filter(key => key.length !== 0);
|
|
||||||
|
|
||||||
return secrets.map(secret => {
|
|
||||||
const path = secret.substring(0, secret.indexOf(' '));
|
|
||||||
const parameters = secret.substring(secret.indexOf(' ') + 1);
|
|
||||||
|
|
||||||
core.debug(`ℹ Parsing PKI: ${path} with parameters: ${parameters}`);
|
|
||||||
|
|
||||||
if (!path || !parameters) {
|
|
||||||
throw Error(`You must provide a valid path and parameters. Input: "${secret}"`);
|
|
||||||
}
|
|
||||||
|
|
||||||
let outputVarName = path.split('/').pop();
|
|
||||||
let envVarName = normalizeOutputKey(outputVarName);
|
|
||||||
|
|
||||||
return {
|
|
||||||
path,
|
|
||||||
envVarName,
|
|
||||||
outputVarName,
|
|
||||||
parameters: JSON.parse(parameters),
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parses a secrets input string into key paths and their resulting environment variable name.
|
* Parses a secrets input string into key paths and their resulting environment variable name.
|
||||||
* @param {string} secretsInput
|
* @param {string} secretsInput
|
||||||
@@ -226,7 +176,7 @@ function parseSecretsInput(secretsInput) {
|
|||||||
const selectorAst = jsonata(selectorQuoted).ast();
|
const selectorAst = jsonata(selectorQuoted).ast();
|
||||||
const selector = selectorQuoted.replace(new RegExp('"', 'g'), '');
|
const selector = selectorQuoted.replace(new RegExp('"', 'g'), '');
|
||||||
|
|
||||||
if (selector !== WILDCARD && selector !== WILDCARD_UPPERCASE && (selectorAst.type !== "path" || selectorAst.steps[0].stages) && selectorAst.type !== "string" && !outputVarName) {
|
if (selector !== WILDCARD && (selectorAst.type !== "path" || selectorAst.steps[0].stages) && selectorAst.type !== "string" && !outputVarName) {
|
||||||
throw Error(`You must provide a name for the output key when using json selectors. Input: "${secret}"`);
|
throw Error(`You must provide a name for the output key when using json selectors. Input: "${secret}"`);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -271,9 +221,8 @@ function parseHeadersInput(inputKey, inputOptions) {
|
|||||||
}, new Map());
|
}, new Map());
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
export {
|
||||||
exportSecrets,
|
exportSecrets,
|
||||||
parseSecretsInput,
|
parseSecretsInput,
|
||||||
parseHeadersInput,
|
parseHeadersInput,
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|||||||
+9
-14
@@ -1,22 +1,17 @@
|
|||||||
/**
|
import { vi, describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
jest.mock('got');
|
vi.mock('got');
|
||||||
jest.mock('@actions/core');
|
vi.mock('@actions/core');
|
||||||
jest.mock('@actions/core/lib/command');
|
|
||||||
|
|
||||||
const command = require('@actions/core/lib/command');
|
import core from '@actions/core';
|
||||||
const core = require('@actions/core');
|
import got from 'got';
|
||||||
const got = require('got');
|
import {
|
||||||
const {
|
|
||||||
exportSecrets,
|
exportSecrets,
|
||||||
parseSecretsInput,
|
parseSecretsInput,
|
||||||
parseHeadersInput
|
parseHeadersInput
|
||||||
} = require('./action');
|
} from './action.js';
|
||||||
|
|
||||||
const { when } = require('jest-when');
|
import { when } from 'jest-when'
|
||||||
|
|
||||||
describe('parseSecretsInput', () => {
|
describe('parseSecretsInput', () => {
|
||||||
it('parses simple secret', () => {
|
it('parses simple secret', () => {
|
||||||
@@ -137,7 +132,7 @@ describe('parseHeaders', () => {
|
|||||||
|
|
||||||
describe('exportSecrets', () => {
|
describe('exportSecrets', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('url', expect.anything())
|
.calledWith('url', expect.anything())
|
||||||
|
|||||||
+6
-40
@@ -1,17 +1,10 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
// @ts-check
|
// @ts-check
|
||||||
const core = require('@actions/core');
|
import core from '@actions/core';
|
||||||
const rsasign = require('jsrsasign');
|
import * as fs from 'fs';
|
||||||
const fs = require('fs');
|
import got from 'got';
|
||||||
const { default: got } = require('got');
|
import rsasign from 'jsrsasign';
|
||||||
|
|
||||||
const defaultKubernetesTokenPath = '/var/run/secrets/kubernetes.io/serviceaccount/token'
|
const defaultKubernetesTokenPath = '/var/run/secrets/kubernetes.io/serviceaccount/token'
|
||||||
const retries = 5
|
|
||||||
const retries_delay = 3000
|
|
||||||
/***
|
/***
|
||||||
* Authenticate with Vault and retrieve a Vault token that can be used for requests.
|
* Authenticate with Vault and retrieve a Vault token that can be used for requests.
|
||||||
* @param {string} method
|
* @param {string} method
|
||||||
@@ -42,10 +35,7 @@ async function retrieveToken(method, client) {
|
|||||||
const githubAudience = core.getInput('jwtGithubAudience', { required: false });
|
const githubAudience = core.getInput('jwtGithubAudience', { required: false });
|
||||||
|
|
||||||
if (!privateKey) {
|
if (!privateKey) {
|
||||||
jwt = await retryAsyncFunction(retries, retries_delay, core.getIDToken, githubAudience)
|
jwt = await core.getIDToken(githubAudience)
|
||||||
.then((result) => {
|
|
||||||
return result;
|
|
||||||
});
|
|
||||||
} else {
|
} else {
|
||||||
jwt = generateJwt(privateKey, keyPassword, Number(tokenTtl));
|
jwt = generateJwt(privateKey, keyPassword, Number(tokenTtl));
|
||||||
}
|
}
|
||||||
@@ -152,30 +142,6 @@ async function getClientToken(client, method, path, payload) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/***
|
|
||||||
* Generic function for retrying an async function
|
|
||||||
* @param {number} retries
|
|
||||||
* @param {number} delay
|
|
||||||
* @param {Function} func
|
|
||||||
* @param {any[]} args
|
|
||||||
*/
|
|
||||||
async function retryAsyncFunction(retries, delay, func, ...args) {
|
|
||||||
let attempt = 0;
|
|
||||||
while (attempt < retries) {
|
|
||||||
try {
|
|
||||||
const result = await func(...args);
|
|
||||||
return result;
|
|
||||||
} catch (error) {
|
|
||||||
attempt++;
|
|
||||||
if (attempt < retries) {
|
|
||||||
await new Promise(resolve => setTimeout(resolve, delay));
|
|
||||||
} else {
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/***
|
/***
|
||||||
* @typedef {Object} VaultLoginResponse
|
* @typedef {Object} VaultLoginResponse
|
||||||
* @property {{
|
* @property {{
|
||||||
@@ -188,6 +154,6 @@ async function retryAsyncFunction(retries, delay, func, ...args) {
|
|||||||
* }} auth
|
* }} auth
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = {
|
export {
|
||||||
retrieveToken,
|
retrieveToken,
|
||||||
};
|
};
|
||||||
|
|||||||
+14
-40
@@ -1,27 +1,20 @@
|
|||||||
/**
|
import { vi, describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
jest.mock('got');
|
vi.mock('got');
|
||||||
jest.mock('@actions/core');
|
vi.mock('@actions/core');
|
||||||
jest.mock('@actions/core/lib/command');
|
vi.mock('fs', () => ({
|
||||||
jest.mock('fs', () => ({
|
stat: vi.fn().mockResolvedValue(null),
|
||||||
stat: jest.fn().mockResolvedValue(null),
|
|
||||||
promises: {
|
promises: {
|
||||||
access: jest.fn().mockResolvedValue(null),
|
access: vi.fn().mockResolvedValue(null),
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const core = require('@actions/core');
|
import core from '@actions/core';
|
||||||
const got = require('got');
|
import got from 'got'
|
||||||
const fs = require("fs")
|
import * as fs from 'fs';
|
||||||
const { when } = require('jest-when');
|
import { when } from 'jest-when'
|
||||||
|
|
||||||
|
import { retrieveToken } from './auth.js';
|
||||||
const {
|
|
||||||
retrieveToken
|
|
||||||
} = require('./auth');
|
|
||||||
|
|
||||||
|
|
||||||
function mockInput(name, key) {
|
function mockInput(name, key) {
|
||||||
@@ -32,7 +25,7 @@ function mockInput(name, key) {
|
|||||||
|
|
||||||
function mockApiResponse() {
|
function mockApiResponse() {
|
||||||
const response = { body: { auth: { client_token: testToken, renewable: true, policies: [], accessor: "accessor" } } }
|
const response = { body: { auth: { client_token: testToken, renewable: true, policies: [], accessor: "accessor" } } }
|
||||||
got.post = jest.fn()
|
got.post = vi.fn()
|
||||||
got.post.mockReturnValue(response)
|
got.post.mockReturnValue(response)
|
||||||
}
|
}
|
||||||
const testToken = "testoken";
|
const testToken = "testoken";
|
||||||
@@ -40,7 +33,7 @@ const testToken = "testoken";
|
|||||||
describe("test retrival for token", () => {
|
describe("test retrival for token", () => {
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
});
|
});
|
||||||
|
|
||||||
it("test retrival with approle", async () => {
|
it("test retrival with approle", async () => {
|
||||||
@@ -81,7 +74,7 @@ describe("test retrival for token", () => {
|
|||||||
mockInput("kubernetesTokenPath", testTokenPath)
|
mockInput("kubernetesTokenPath", testTokenPath)
|
||||||
mockInput("role", testRole)
|
mockInput("role", testRole)
|
||||||
mockInput("path", testPath)
|
mockInput("path", testPath)
|
||||||
fs.readFileSync = jest.fn()
|
fs.readFileSync = vi.fn()
|
||||||
fs.readFileSync.mockReturnValueOnce(jwtToken)
|
fs.readFileSync.mockReturnValueOnce(jwtToken)
|
||||||
const token = await retrieveToken(method, got)
|
const token = await retrieveToken(method, got)
|
||||||
expect(token).toEqual(testToken)
|
expect(token).toEqual(testToken)
|
||||||
@@ -90,23 +83,4 @@ describe("test retrival for token", () => {
|
|||||||
const url = got.post.mock.calls[0][0]
|
const url = got.post.mock.calls[0][0]
|
||||||
expect(url).toContain('differentK8sPath')
|
expect(url).toContain('differentK8sPath')
|
||||||
})
|
})
|
||||||
|
|
||||||
it("test retrieval with jwt", async () => {
|
|
||||||
const method = "jwt"
|
|
||||||
const jwtToken = "someTestToken"
|
|
||||||
const testRole = "testRole"
|
|
||||||
const privateKeyRaw = ""
|
|
||||||
|
|
||||||
mockApiResponse()
|
|
||||||
mockInput("role", testRole)
|
|
||||||
mockInput("jwtPrivateKey", privateKeyRaw)
|
|
||||||
core.getIDToken = jest.fn()
|
|
||||||
core.getIDToken.mockReturnValueOnce(jwtToken)
|
|
||||||
const token = await retrieveToken(method, got)
|
|
||||||
expect(token).toEqual(testToken)
|
|
||||||
const payload = got.post.mock.calls[0][1].json
|
|
||||||
expect(payload).toEqual({ jwt: jwtToken, role: testRole })
|
|
||||||
const url = got.post.mock.calls[0][0]
|
|
||||||
expect(url).toContain('jwt')
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
// This allows us to use `require` in our ECMAScript module
|
||||||
|
// See: https://github.com/vercel/ncc/issues/791
|
||||||
|
import { createRequire } from 'node:module';
|
||||||
|
import url from 'node:url';
|
||||||
|
|
||||||
|
const __filename = url.fileURLToPath(import.meta.url);
|
||||||
|
globalThis.require = createRequire(__filename);
|
||||||
|
|
||||||
|
export default require;
|
||||||
+3
-10
@@ -1,12 +1,5 @@
|
|||||||
/**
|
const WILDCARD = '*';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
const WILDCARD_UPPERCASE = '*';
|
export {
|
||||||
const WILDCARD = '**';
|
WILDCARD
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
WILDCARD,
|
|
||||||
WILDCARD_UPPERCASE,
|
|
||||||
};
|
};
|
||||||
|
|||||||
+2
-7
@@ -1,10 +1,5 @@
|
|||||||
/**
|
import core from '@actions/core';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
import { exportSecrets } from './action.js';
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
const core = require('@actions/core');
|
|
||||||
const { exportSecrets } = require('./action');
|
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
|
|||||||
+5
-12
@@ -1,14 +1,7 @@
|
|||||||
/**
|
import auth from './auth.js';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
import secrets from './secrets.js';
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
const auth = require('./auth');
|
export default {
|
||||||
const secrets = require('./secrets');
|
|
||||||
const pki = require('./pki');
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
auth,
|
auth,
|
||||||
secrets,
|
secrets
|
||||||
pki
|
};
|
||||||
};
|
|
||||||
|
|||||||
-81
@@ -1,81 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
const { normalizeOutputKey } = require('./utils');
|
|
||||||
const core = require('@actions/core');
|
|
||||||
|
|
||||||
/** A map of postfix values mapped to the key in the certificate response and a transformer function */
|
|
||||||
const outputMap = {
|
|
||||||
cert: { key: 'certificate', tx: (v) => v },
|
|
||||||
key: { key: 'private_key', tx: (v) => v },
|
|
||||||
ca: { key: 'issuing_ca', tx: (v) => v },
|
|
||||||
ca_chain: { key: 'ca_chain', tx: (v) => v.join('\n') },
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @typedef PkiRequest
|
|
||||||
* @type {object}
|
|
||||||
* @property {string} path - The path to the PKI endpoint
|
|
||||||
* @property {Record<string, any>} parameters - The parameters to send to the PKI endpoint
|
|
||||||
* @property {string} envVarName - The name of the environment variable to set
|
|
||||||
* @property {string} outputVarName - The name of the output variable to set
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @typedef {Object} PkiResponse
|
|
||||||
* @property {PkiRequest} request
|
|
||||||
* @property {string} value
|
|
||||||
* @property {boolean} cachedResponse
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate and return the certificates from the PKI engine
|
|
||||||
* @param {Array<PkiRequest>} pkiRequests
|
|
||||||
* @param {import('got').Got} client
|
|
||||||
* @return {Promise<Array<PkiResponse>>}
|
|
||||||
*/
|
|
||||||
async function getCertificates(pkiRequests, client) {
|
|
||||||
/** @type Array<PkiResponse> */
|
|
||||||
let results = [];
|
|
||||||
|
|
||||||
for (const pkiRequest of pkiRequests) {
|
|
||||||
const { path, parameters } = pkiRequest;
|
|
||||||
|
|
||||||
const requestPath = `v1/${path}`;
|
|
||||||
let body;
|
|
||||||
try {
|
|
||||||
const result = await client.post(requestPath, {
|
|
||||||
body: JSON.stringify(parameters),
|
|
||||||
});
|
|
||||||
body = result.body;
|
|
||||||
} catch (error) {
|
|
||||||
core.error(`✘ ${error.response?.body ?? error.message}`);
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
|
|
||||||
body = JSON.parse(body);
|
|
||||||
|
|
||||||
core.info(`✔ Successfully generated certificate (serial number ${body.data.serial_number})`);
|
|
||||||
|
|
||||||
Object.entries(outputMap).forEach(([key, value]) => {
|
|
||||||
const val = value.tx(body.data[value.key]);
|
|
||||||
results.push({
|
|
||||||
request: {
|
|
||||||
...pkiRequest,
|
|
||||||
envVarName: normalizeOutputKey(`${pkiRequest.envVarName}_${key}`, true),
|
|
||||||
outputVarName: normalizeOutputKey(`${pkiRequest.outputVarName}_${key}`),
|
|
||||||
},
|
|
||||||
value: val,
|
|
||||||
cachedResponse: false,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return results;
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
getCertificates,
|
|
||||||
};
|
|
||||||
+15
-18
@@ -1,22 +1,19 @@
|
|||||||
/**
|
import { vi, describe, test, expect } from 'vitest';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
jest.mock('@actions/core');
|
vi.mock('@actions/core');
|
||||||
|
|
||||||
const core = require('@actions/core');
|
import core from '@actions/core';
|
||||||
const ServerMock = require("mock-http-server");
|
import ServerMock from 'mock-http-server';
|
||||||
const { exportSecrets } = require("./action");
|
import { exportSecrets } from './action.js';
|
||||||
const { when } = require('jest-when');
|
import { when } from 'jest-when';
|
||||||
|
|
||||||
describe('exportSecrets retries', () => {
|
describe('exportSecrets retries', () => {
|
||||||
var server = new ServerMock({ host: "127.0.0.1", port: 0 });
|
var server = new ServerMock({ host: "127.0.0.1", port: 0 });
|
||||||
var calls = 0;
|
var calls = 0;
|
||||||
|
|
||||||
beforeEach((done) => {
|
beforeEach(() => new Promise(done => {
|
||||||
calls = 0;
|
calls = 0;
|
||||||
jest.resetAllMocks();
|
vi.resetAllMocks();
|
||||||
|
|
||||||
when(core.getInput)
|
when(core.getInput)
|
||||||
.calledWith('token', expect.anything())
|
.calledWith('token', expect.anything())
|
||||||
@@ -33,11 +30,11 @@ describe('exportSecrets retries', () => {
|
|||||||
.mockReturnValueOnce('http://127.0.0.1:' + server.getHttpPort());
|
.mockReturnValueOnce('http://127.0.0.1:' + server.getHttpPort());
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
}));
|
||||||
|
|
||||||
afterEach((done) => {
|
afterEach(() => new Promise(done => {
|
||||||
server.stop(done);
|
server.stop(done);
|
||||||
});
|
}));
|
||||||
|
|
||||||
function mockStatusCodes(statusCodes) {
|
function mockStatusCodes(statusCodes) {
|
||||||
server.on({
|
server.on({
|
||||||
@@ -56,19 +53,19 @@ describe('exportSecrets retries', () => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
it('retries on 412 status code', (done) => {
|
it('retries on 412 status code', () => new Promise(done => {
|
||||||
mockStatusCodes([412, 200])
|
mockStatusCodes([412, 200])
|
||||||
exportSecrets().then(() => {
|
exportSecrets().then(() => {
|
||||||
expect(calls).toEqual(2);
|
expect(calls).toEqual(2);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
}));
|
||||||
|
|
||||||
it('retries on 500 status code', (done) => {
|
it('retries on 500 status code', () => new Promise(done => {
|
||||||
mockStatusCodes([500, 200])
|
mockStatusCodes([500, 200])
|
||||||
exportSecrets().then(() => {
|
exportSecrets().then(() => {
|
||||||
expect(calls).toEqual(2);
|
expect(calls).toEqual(2);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
}));
|
||||||
});
|
});
|
||||||
|
|||||||
+24
-35
@@ -1,12 +1,11 @@
|
|||||||
/**
|
import core from '@actions/core';
|
||||||
* Copyright IBM Corp. 2019, 2026
|
import { WILDCARD } from './constants.js';
|
||||||
* SPDX-License-Identifier: MIT
|
import { normalizeOutputKey } from './utils.js';
|
||||||
*/
|
|
||||||
|
// ncc doesn't compile jsonata imports properly, so we must use our own custom require
|
||||||
|
import require from "./cjs-require.js";
|
||||||
|
const jsonata = require('jsonata');
|
||||||
|
|
||||||
const jsonata = require("jsonata");
|
|
||||||
const { WILDCARD, WILDCARD_UPPERCASE} = require("./constants");
|
|
||||||
const { normalizeOutputKey } = require("./utils");
|
|
||||||
const core = require('@actions/core');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {Object} SecretRequest
|
* @typedef {Object} SecretRequest
|
||||||
@@ -31,14 +30,11 @@ const core = require('@actions/core');
|
|||||||
async function getSecrets(secretRequests, client, ignoreNotFound) {
|
async function getSecrets(secretRequests, client, ignoreNotFound) {
|
||||||
const responseCache = new Map();
|
const responseCache = new Map();
|
||||||
let results = [];
|
let results = [];
|
||||||
let upperCaseEnv = false;
|
|
||||||
|
|
||||||
for (const secretRequest of secretRequests) {
|
for (const secretRequest of secretRequests) {
|
||||||
let { path, selector } = secretRequest;
|
let { path, selector } = secretRequest;
|
||||||
|
|
||||||
// Strip leading slashes to avoid double-slash in the request path
|
const requestPath = `v1/${path}`;
|
||||||
// (e.g. /cubbyhole/test → v1/cubbyhole/test)
|
|
||||||
const requestPath = `v1/${path.replace(/^\/+/, '')}`;
|
|
||||||
let body;
|
let body;
|
||||||
let cachedResponse = false;
|
let cachedResponse = false;
|
||||||
if (responseCache.has(requestPath)) {
|
if (responseCache.has(requestPath)) {
|
||||||
@@ -52,7 +48,7 @@ async function getSecrets(secretRequests, client, ignoreNotFound) {
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
const {response} = error;
|
const {response} = error;
|
||||||
if (response?.statusCode === 404) {
|
if (response?.statusCode === 404) {
|
||||||
notFoundMsg = `Unable to retrieve result for "${path}" because it was not found: ${response.body.trim()}`;
|
let notFoundMsg = `Unable to retrieve result for "${path}" because it was not found: ${response.body.trim()}`;
|
||||||
const ignoreNotFound = (core.getInput('ignoreNotFound', { required: false }) || 'false').toLowerCase() != 'false';
|
const ignoreNotFound = (core.getInput('ignoreNotFound', { required: false }) || 'false').toLowerCase() != 'false';
|
||||||
if (ignoreNotFound) {
|
if (ignoreNotFound) {
|
||||||
core.error(`✘ ${notFoundMsg}`);
|
core.error(`✘ ${notFoundMsg}`);
|
||||||
@@ -67,8 +63,7 @@ async function getSecrets(secretRequests, client, ignoreNotFound) {
|
|||||||
|
|
||||||
body = JSON.parse(body);
|
body = JSON.parse(body);
|
||||||
|
|
||||||
if (selector === WILDCARD || selector === WILDCARD_UPPERCASE) {
|
if (selector == WILDCARD) {
|
||||||
upperCaseEnv = selector === WILDCARD_UPPERCASE;
|
|
||||||
let keys = body.data;
|
let keys = body.data;
|
||||||
if (body.data["data"] != undefined) {
|
if (body.data["data"] != undefined) {
|
||||||
keys = keys.data;
|
keys = keys.data;
|
||||||
@@ -76,26 +71,20 @@ async function getSecrets(secretRequests, client, ignoreNotFound) {
|
|||||||
|
|
||||||
for (let key in keys) {
|
for (let key in keys) {
|
||||||
let newRequest = Object.assign({},secretRequest);
|
let newRequest = Object.assign({},secretRequest);
|
||||||
newRequest.selector = key;
|
newRequest.selector = key;
|
||||||
|
|
||||||
if (secretRequest.selector === secretRequest.outputVarName) {
|
if (secretRequest.selector === secretRequest.outputVarName) {
|
||||||
newRequest.outputVarName = key;
|
newRequest.outputVarName = key;
|
||||||
newRequest.envVarName = key;
|
newRequest.envVarName = key;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
newRequest.outputVarName = secretRequest.outputVarName+key;
|
newRequest.outputVarName = secretRequest.outputVarName+key;
|
||||||
newRequest.envVarName = secretRequest.envVarName+key;
|
newRequest.envVarName = secretRequest.envVarName+key;
|
||||||
}
|
}
|
||||||
|
|
||||||
newRequest.outputVarName = normalizeOutputKey(newRequest.outputVarName);
|
newRequest.outputVarName = normalizeOutputKey(newRequest.outputVarName);
|
||||||
newRequest.envVarName = normalizeOutputKey(newRequest.envVarName, upperCaseEnv);
|
newRequest.envVarName = normalizeOutputKey(newRequest.envVarName,true);
|
||||||
|
|
||||||
// JSONata field references containing reserved tokens should
|
|
||||||
// be enclosed in backticks
|
|
||||||
// https://docs.jsonata.org/simple#examples
|
|
||||||
if (key.includes(".")) {
|
|
||||||
const backtick = '`';
|
|
||||||
key = backtick.concat(key, backtick);
|
|
||||||
}
|
|
||||||
selector = key;
|
selector = key;
|
||||||
|
|
||||||
results = await selectAndAppendResults(
|
results = await selectAndAppendResults(
|
||||||
@@ -109,13 +98,13 @@ async function getSecrets(secretRequests, client, ignoreNotFound) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
results = await selectAndAppendResults(
|
results = await selectAndAppendResults(
|
||||||
selector,
|
selector,
|
||||||
body,
|
body,
|
||||||
cachedResponse,
|
cachedResponse,
|
||||||
secretRequest,
|
secretRequest,
|
||||||
results
|
results
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return results;
|
return results;
|
||||||
@@ -160,7 +149,7 @@ const selectAndAppendResults = async (
|
|||||||
secretRequest,
|
secretRequest,
|
||||||
results
|
results
|
||||||
) => {
|
) => {
|
||||||
if (!selector.includes(".")) {
|
if (!selector.match(/.*[\.].*/)) {
|
||||||
selector = '"' + selector + '"';
|
selector = '"' + selector + '"';
|
||||||
}
|
}
|
||||||
selector = "data." + selector;
|
selector = "data." + selector;
|
||||||
@@ -180,7 +169,7 @@ const selectAndAppendResults = async (
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = {
|
export {
|
||||||
getSecrets,
|
getSecrets,
|
||||||
selectData
|
selectData
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-10
@@ -1,24 +1,19 @@
|
|||||||
/**
|
|
||||||
* Copyright IBM Corp. 2019, 2026
|
|
||||||
* SPDX-License-Identifier: MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replaces any dot chars to __ and removes non-ascii charts
|
* Replaces any dot chars to __ and removes non-ascii charts
|
||||||
* @param {string} dataKey
|
* @param {string} dataKey
|
||||||
* @param {boolean=} isEnvVar
|
* @param {boolean=} isEnvVar
|
||||||
*/
|
*/
|
||||||
function normalizeOutputKey(dataKey, upperCase = false) {
|
function normalizeOutputKey(dataKey, isEnvVar = false) {
|
||||||
let outputKey = dataKey
|
let outputKey = dataKey
|
||||||
.replaceAll(".", "__")
|
.replace(".", "__")
|
||||||
.replace(new RegExp("-", "g"), "")
|
.replace(new RegExp("-", "g"), "")
|
||||||
.replace(/[^\p{L}\p{N}_-]/gu, "");
|
.replace(/[^\p{L}\p{N}_-]/gu, "");
|
||||||
if (upperCase) {
|
if (isEnvVar) {
|
||||||
outputKey = outputKey.toUpperCase();
|
outputKey = outputKey.toUpperCase();
|
||||||
}
|
}
|
||||||
return outputKey;
|
return outputKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
export {
|
||||||
normalizeOutputKey
|
normalizeOutputKey
|
||||||
};
|
};
|
||||||
|
|||||||
+1
-1
@@ -9,4 +9,4 @@
|
|||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules"
|
"node_modules"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
import { defineConfig, configDefaults } from 'vitest/config'
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
test: {
|
||||||
|
// required to make jest-when work with vitest
|
||||||
|
globals: true,
|
||||||
|
exclude:[
|
||||||
|
...configDefaults.exclude,
|
||||||
|
'**/integrationTests/**'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user