You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[spicedb lsp](#reference-spicedb-lsp) - serve language server protocol
32
32
-[spicedb man](#reference-spicedb-man) - Generate man page
33
+
-[spicedb postgres-fdw](#reference-spicedb-postgres-fdw) - serve a Postgres Foreign Data Wrapper for SpiceDB (EXPERIMENTAL)
33
34
-[spicedb serve](#reference-spicedb-serve) - serve the permissions database
34
35
-[spicedb serve-testing](#reference-spicedb-serve-testing) - test server with an in-memory datastore
35
36
-[spicedb version](#reference-spicedb-version) - displays the version of SpiceDB
@@ -370,6 +371,36 @@ spicedb man
370
371
371
372
372
373
374
+
## Reference: `spicedb postgres-fdw`
375
+
376
+
EXPERIMENTAL: Serves a Postgres-compatible interface for querying SpiceDB data using foreign data wrappers. This feature is experimental and subject to change.
377
+
378
+
```
379
+
spicedb postgres-fdw [flags]
380
+
```
381
+
382
+
### Options
383
+
384
+
```
385
+
--postgres-access-token-secret string (required) The password that Postgres will use to authenticate to the FDW proxy (configured in the Postgres FDW extension's OPTIONS)
386
+
--postgres-endpoint string The endpoint at which to serve the Postgres protocol (default ":5432")
387
+
--postgres-username string The username that Postgres will use to connect to the FDW proxy (default "postgres")
388
+
--shutdown-grace-period duration The duration to wait for the server to shutdown gracefully
389
+
--spicedb-access-token-secret string (required) Access token for calling the SpiceDB API
390
+
--spicedb-api-endpoint string SpiceDB API endpoint (default "localhost:50051")
391
+
--spicedb-insecure Use insecure connection to SpiceDB API
392
+
```
393
+
394
+
### Options Inherited From Parent Flags
395
+
396
+
```
397
+
--log-format string format of logs ("auto", "console", "json") (default "auto")
0 commit comments