mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-04 03:42:49 +02:00
* remove directory providers and support for groups * idp: remove directory providers * better error messages * fix errors * restore postgres * fix test
15 lines
350 B
Protocol Buffer
15 lines
350 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pomerium.identity;
|
|
option go_package = "github.com/pomerium/pomerium/pkg/grpc/identity";
|
|
|
|
message Provider {
|
|
string id = 1;
|
|
string client_id = 2;
|
|
string client_secret = 3;
|
|
string type = 4;
|
|
repeated string scopes = 5;
|
|
// string service_account = 6;
|
|
string url = 7;
|
|
map<string, string> request_params = 8;
|
|
}
|