Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SecretSync

A CLI utility for syncing secrets between Vault, local .env files, and Kubernetes secrets.
Provides a unified interface for managing secrets across multiple sources with support for
diffs and preset configurations.

## Repo organization

Root
├─ /src/config.rs: the core domain design
├─ /src/secrets.rs: the core domain design
├─ /src/job/: Job execution and orchestration
└─ /src/sources/: Secret source implementations (Vault, File, Kubernetes)

## Verifying (MUST BE RUN BEFORE CONSIDERING A TASK COMPLETE)

- `cargo fmt --all -- --check`
- `cargo test --all-features`
- `cargo clippy --all-targets --all-features -- -D warnings`
- `cargo build --all-features`
192 changes: 158 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ serde_json = "1.0"
tokio = { version = "1.28.2", features = ["full"] }
ureq = "2.6.2"
url = "2.3.1"
tempfile = "3"
Loading
Loading