mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 15:16:56 +00:00
* feat(authenticate): add approle auth method * docs(readme): update readme * fix: update index.js * fix: update got to 10.2.2 to fix ncc * chore: clean up code slightly * chore: update tests to use got correctly * chore(test): fix integration tests * chore: streamline method logic * chore: make role and secret required in approle Co-authored-by: Sébastien FAUVART <sebastien.fauvart@gmail.com> Co-authored-by: Richard Simpson <richardsimpson@outlook.com>
17 lines
No EOL
408 B
YAML
17 lines
No EOL
408 B
YAML
# Start vault server locally for the purposes of integration tests.
|
|
version: "3.0"
|
|
services:
|
|
vault:
|
|
image: vault:1.3.0
|
|
environment:
|
|
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
|
ports:
|
|
- 8200:8200
|
|
privileged: true
|
|
vault-enterprise:
|
|
image: hashicorp/vault-enterprise:1.3.0_ent
|
|
environment:
|
|
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
|
ports:
|
|
- 8201:8200
|
|
privileged: true |