Scale
From one bucket in CI to your whole estate across accounts.
1. Can I do more?
Yes — the same engine scales up several axes:
-
More resource types — the control catalog spans S3, IAM, EC2, KMS, Lambda, EKS, CloudTrail and more; browse the full set under Reference → Full Control Catalog.
-
Whole-estate snapshots via Steampipe. Instead of hand-running AWS CLI calls, use Steampipe to query your cloud as SQL and emit the facts Stave evaluates. Steampipe's AWS plugin enumerates resources across accounts/regions; a thin mapping turns those rows into
obs.v0.1observations:# Steampipe queries your cloud as SQL; export the rows...
steampipe query "select arn, policy, tags from aws_s3_bucket" --output json > buckets.json
# ...then map to obs.v0.1 and evaluate the whole estate
python3 steampipe_to_obs.py buckets.json > snapshot/s3.json
stave apply --observations ./snapshot/ --format sarifThis is the natural path from "one snapshot" to "every account, on a schedule." See How to create snapshots for the extraction patterns (AWS CLI, Terraform, Steampipe).
-
Compound chains — at estate scale, the high-value findings are the cross-resource attack chains; the engine assembles those automatically.
2. How do I give feedback?
Email bparanj@gmail.com — feature requests, control gaps, "Stave missed X" (that's a control-gap signal and exactly what we want), and rough edges. Concrete snapshots + expected-vs-actual verdicts are the most useful.
3. Will the product grow with me?
- Controls are code — write your own (
ctrl.v1YAML + CEL); the engine runs them alongside the built-ins, so your policy library grows with your needs. - Stable contracts —
obs.v0.1/ctrl.v1/out.v0.1are versioned, so your snapshots, controls, and pipelines keep working across releases. - Reasoning engines — beyond CEL, facts can be exported to external solvers (Z3, Souffle) for heavier reasoning as your questions get harder.
- Deterministic at any scale — same inputs, same verdicts, whether it's one bucket or ten thousand.
Found a gap or want to go deeper? bparanj@gmail.com · GitHub.