mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-03 12:26:03 +02:00
* implement dynamic provider support * authenticate: support per-route client id and secret
15 lines
347 B
Protocol Buffer
15 lines
347 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;
|
|
}
|