pomerium/pkg/grpc/identity/identity.proto
Caleb Doxsey c178819875
move directory providers (#3633)
* remove directory providers and support for groups

* idp: remove directory providers

* better error messages

* fix errors

* restore postgres

* fix test
2022-11-03 11:33:56 -06:00

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