You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
very simple right now, but storage backend is consul, via local agent
Startup Log Output:
Expected Behavior:
I attempted to read key information (e.g. vault read transit/keys/<name>) for a key of type ecdsa-p256, using a token with the necessary privileges on a vault server with a file audit backend enabled. I expected to see that key's information.
Actual Behavior:
A 500 error from the command, and a panic recorded in the server's logs:
[ERROR] audit: panic during logging: request_path=transit/keys/boss2 error="reflect: reflect.Value.Set using unaddressable value"
[ERROR] core: failed to audit response: request_path=transit/keys/boss2 error=1 error occurred:
* panic generating audit log
Steps to Reproduce:
vault server -dev
vault audit-enable file "file_path=/tmp/vault-test-audit"
vault mount transit
vault write transit/keys/testkey "type=ecdsa-p256"
vault read transit/keys/testkey
The text was updated successfully, but these errors were encountered:
Environment:
Vault Config File:
very simple right now, but storage backend is consul, via local agent
Startup Log Output:
Expected Behavior:
I attempted to read key information (e.g.
vault read transit/keys/<name>
) for a key of type ecdsa-p256, using a token with the necessary privileges on a vault server with a file audit backend enabled. I expected to see that key's information.Actual Behavior:
A 500 error from the command, and a panic recorded in the server's logs:
Steps to Reproduce:
The text was updated successfully, but these errors were encountered: