AuthZed/SpiceDB Connector
AuthZed/SpiceDB is an authorization service built on Zanzibar. This connector allows writing, reading and materializing/denormalizing permissions from SpiceDB.
Sink
The sink allows inserting data from other sources into SpiceDB.
These columns are required to insert data:
- subject_type - subject type
- subject_id - identifier of the subject
- relation - relation name
- resource_type - resource type
- resource_id - identifier of the resource.
Optional:
- subject_relation - optional subject relation.
To use the SpiceDB Sink add the following line to the ConnectorManager:
connectorManager.AddSpiceDbSink("regex pattern for tablename", new SpiceDbSinkOptions
{
Channel = grpcChannel, // Grpc channel used to connect to SpiceDB
GetMetadata = () =>
{
var metadata = new Metadata();
// Add any headers etc here.
metadata.Add("Authorization", "Bearer {token}");
return metadata;
}
});
Sql example:
INSERT INTO spicedb
SELECT
'user' as subject_type,
o.userkey as subject_id,
'reader' as relation,
'document' as resource_type,
o.orderkey as resource_id
FROM orders o
Events
The following event listeners exist that can be used to modify or get the current watermark of the stream that has been sent to SpiceDB:
- BeforeWriteRequestFunc - Called before each write, its possible to modify the data before it gets sent here.
- OnWatermarkFunc - Called after a watermark is recieved and the data has been added to SpiceDB, also contains the last recieved zedtoken from SpiceDB.
- OnInitialDataSentFunc - Called the first time data has been written to SpiceDB.