Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes #2505 adds central configuration with events #2539

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,117 changes: 643 additions & 474 deletions common/pb/edge_cmd_pb/edge_cmd.pb.go

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions common/pb/edge_cmd_pb/edge_cmd.proto
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,21 @@ message Mfa {
repeated string recoveryCodes = 6;
}

// ControllerSetting

message ControllerSetting {
string id = 1;
map<string, TagValue> tags = 2;

message Oidc {
repeated string redirectUri = 1;
repeated string postLogoutUri = 2;
}

Oidc oidc = 3;

}

// Posture Checks
/*
*/
Expand Down
1 change: 1 addition & 0 deletions controller/db/base_entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const (
EntityTypeIdentities = "identities"
EntityTypeIdentityTypes = "identityTypes"
EntityTypeMfas = "mfas"
EntityTypeSettings = "settings"
EntityTypeRevocations = "revocations"
EntityTypeServicePolicies = "servicePolicies"
EntityTypeServiceEdgeRouterPolicies = "serviceEdgeRouterPolicies"
Expand Down
Loading
Loading