https://github.com/somoore/steampipe-plugin-turbopuffer
Steampipe plugin to query turbopuffer namespaces, schemas, documents and recall — the inventory layer for vector-search security posture.
https://github.com/somoore/steampipe-plugin-turbopuffer
postgresql postgresql-fdw sql steampipe steampipe-plugin
Last synced: 3 days ago
JSON representation
Steampipe plugin to query turbopuffer namespaces, schemas, documents and recall — the inventory layer for vector-search security posture.
- Host: GitHub
- URL: https://github.com/somoore/steampipe-plugin-turbopuffer
- Owner: somoore
- License: apache-2.0
- Created: 2026-07-07T04:32:53.000Z (20 days ago)
- Default Branch: main
- Last Pushed: 2026-07-07T16:08:50.000Z (20 days ago)
- Last Synced: 2026-07-07T17:10:30.047Z (20 days ago)
- Topics: postgresql, postgresql-fdw, sql, steampipe, steampipe-plugin
- Language: Go
- Homepage: https://hub.steampipe.io/plugins/somoore/turbopuffer
- Size: 97.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README

# turbopuffer plugin for Steampipe
Use SQL to query namespaces, schemas, documents and recall in [turbopuffer][].
- **[Get started →](docs/index.md)**
- Documentation: [Table definitions & examples](docs/tables)
- Cookbook: [Example queries](docs/example_queries.md) — a guided tour, inventory to ACL audit
```sql
select id, region, approx_row_count, encryption_mode, updated_at
from turbopuffer_namespace
order by approx_logical_bytes desc;
```
Pairs with the [turbopuffer Security Benchmark mod][mod] — 15 Powerpipe controls and branded dashboards over these tables.
## Quick start
Install the plugin with [Steampipe][]:
steampipe plugin install somoore/turbopuffer
Configure your [connection](docs/index.md) with a turbopuffer API key and the regions to scan.
## Development
To build the plugin and install it in your `.steampipe` directory:
make install
Copy the default config file:
cp config/turbopuffer.spc ~/.steampipe/config/turbopuffer.spc
Run the tests and standards checks:
make test
Built on the official [`turbopuffer-go`][sdk] client; endpoints and response fields were verified against its v2 surface. Unofficial community plugin — not affiliated with turbopuffer inc.
## License
Apache 2
[steampipe]: https://steampipe.io
[turbopuffer]: https://turbopuffer.com
[sdk]: https://github.com/turbopuffer/turbopuffer-go
[mod]: https://github.com/somoore/powerpipe-turbopuffer-security-benchmark