mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
15 lines
427 B
Bash
15 lines
427 B
Bash
#!/bin/env bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
set -eux
|
|
|
|
# Run nc to listen to port 9090 for the socket audit log
|
|
nc -l 9090 &>/dev/null &
|
|
|
|
# Sleep for a second to make sure nc is up and running
|
|
sleep 1
|
|
|
|
$VAULT_BIN_PATH audit enable file file_path="$LOG_FILE_PATH"
|
|
$VAULT_BIN_PATH audit enable syslog tag="vault" facility="AUTH"
|
|
$VAULT_BIN_PATH audit enable socket address="127.0.0.1:9090"
|