pomerium/pkg/grpc/identity/identity.proto
Caleb Doxsey f9b95a276b
authenticate: support for per-route client id and client secret (#3030)
* implement dynamic provider support

* authenticate: support per-route client id and secret
2022-02-16 12:31:55 -07:00

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;
}