8f0158eb9f
See CHANGELOG.md for the full breakdown. Summary:
- ldap_tunnel.go: serves a local unix socket for SSSD/PAM and relays raw
bytes to the SSO over the existing WSS channel (ldap_tunnel messages);
the agent never parses LDAP (DESIGN.md §4). Adds safeWriter to
serialize WebSocket writes now that telemetry, heartbeat, the LDAP
tunnel, and command responses all share one connection.
- secrets.go: renders local templates ({{ bao "path#key" }} placeholders)
by fetching node-scoped values from the SSO and writing the target
atomically at 0600, on a signed render_secrets command (DESIGN.md §5).
demo/ has minimal bash + Node consumers of the rendered file.
- iam.go: applies signed node IAM pushes -- sudoers.d rules (visudo -c
validated), SSH AuthorizedKeysCommand keys, /etc/security/access.conf,
and revocation via sss_cache -E + pkill -u (DESIGN.md §6).
- Capability reporting: the agent's enabled capabilities ride along in
its discovery frame so the SSO can show them in the Directory.
- DESIGN.md: the v2 protocol design this implements.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
13 lines
422 B
Bash
13 lines
422 B
Bash
#!/bin/sh
|
|
# Demo: a 3rd-party bash app reads the secret the theta-agent rendered to disk.
|
|
# The agent rendered /etc/theta/rendered/db.env from a template + OpenBao.
|
|
echo "=== bash app reads the rendered secret ==="
|
|
if [ -f /etc/theta/rendered/db.env ]; then
|
|
. /etc/theta/rendered/db.env
|
|
echo "DB_USER=$DB_USER"
|
|
echo "DB_PASS=$DB_PASS"
|
|
else
|
|
echo "rendered secret not found — run render_secrets first"
|
|
exit 1
|
|
fi
|