feat(secrets): OpenBao write path + auto-unseal on boot (Phase 4 hardening)

- SecretBackend gains write/delete/list_names; FileSecretBackend + OpenBaoBackend
  implement them (vault KV-v2 POST/DELETE/LIST); castle-api/secrets.py routes all
  CRUD through the active backend (dashboard writes to the vault in openbao mode)
- add systemd exec_start_post (general; '-' prefix so a hook failure can't fail
  the unit); castle-openbao runs an unseal.sh on boot using OPENBAO_UNSEAL_KEY
- tests: file write/read/list/delete round-trip

Verified live: write→vault→read→list→delete against OpenBao; seal→restart→
auto-unsealed. TLS hardening remains (deferred; gates cross-network/real secrets).
This commit is contained in:
2026-07-07 05:44:23 -07:00
parent 526736f778
commit b437f71300
6 changed files with 103 additions and 27 deletions

View File

@@ -20,6 +20,19 @@ def test_file_backend_read_miss(tmp_path: Path) -> None:
assert FileSecretBackend(tmp_path).read("ABSENT") is None
def test_file_backend_write_read_list_delete(tmp_path: Path) -> None:
b = FileSecretBackend(tmp_path)
assert b.list_names() == []
b.write("A", "one")
b.write("B", "two")
assert b.read("A") == "one"
assert b.list_names() == ["A", "B"]
b.delete("A")
assert b.read("A") is None
assert b.list_names() == ["B"]
b.delete("ABSENT") # no error
def test_build_backend_defaults_to_file(tmp_path: Path, monkeypatch) -> None:
monkeypatch.delenv("CASTLE_SECRET_BACKEND", raising=False)
assert isinstance(build_backend(tmp_path), FileSecretBackend)