-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdocker-test.sh
executable file
·45 lines (34 loc) · 1.38 KB
/
docker-test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
set -ex
GOOS=linux go build -o vault-auth-plugin-example cmd/vault-auth-plugin-example/main.go
docker kill vaultplg 2>/dev/null || true
tmpdir=$(mktemp -d vaultplgXXXXXX)
mkdir "$tmpdir/data"
docker pull hashicorp/vault
docker run --rm -d -p8200:8200 --name vaultplg -v "$(pwd)/$tmpdir/data":/data -v $(pwd):/example --cap-add=IPC_LOCK -e 'VAULT_LOCAL_CONFIG=
{
"backend": {"file": {"path": "/data"}},
"listener": [{"tcp": {"address": "0.0.0.0:8200", "tls_disable": true}}],
"plugin_directory": "/example",
"log_level": "debug",
"disable_mlock": true,
"api_addr": "http://localhost:8200"
}
' hashicorp/vault server
sleep 1
export VAULT_ADDR=http://localhost:8200
initoutput=$(vault operator init -key-shares=1 -key-threshold=1 -format=json)
vault operator unseal $(echo "$initoutput" | jq -r .unseal_keys_hex[0])
export VAULT_TOKEN=$(echo "$initoutput" | jq -r .root_token)
vault write sys/plugins/catalog/auth/example-auth-plugin \
sha_256=$(shasum -a 256 vault-auth-plugin-example | cut -d' ' -f1) \
command="vault-auth-plugin-example"
vault auth enable \
-path="example" \
-plugin-name="example-auth-plugin" \
-plugin-version=0.2.0 \
plugin
vault read -field=plugin_version sys/auth/example/tune
VAULT_TOKEN= vault write auth/example/login password="super-secret-password"