mirror of
https://github.com/tale/headplane.git
synced 2026-08-26 04:16:49 +00:00
Missing oidc options
This commit is contained in:
@@ -281,6 +281,27 @@ in {
|
|||||||
example = "https://provider.example.com/issuer-url";
|
example = "https://provider.example.com/issuer-url";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
authorization_endpoint = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
|
description = "Optionally override authorization_endpoint";
|
||||||
|
example = "https://provider.example.com/authorization_endpoint";
|
||||||
|
};
|
||||||
|
|
||||||
|
token_endpoint = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
|
description = "Optionally override token_endpoint";
|
||||||
|
example = "https://provider.example.com/token_endpoint";
|
||||||
|
};
|
||||||
|
|
||||||
|
userinfo_endpoint = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
|
description = "Optionally override userinfo_endpoint";
|
||||||
|
example = "https://provider.example.com/userinfo_endpoint";
|
||||||
|
};
|
||||||
|
|
||||||
client_id = mkOption {
|
client_id = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "";
|
default = "";
|
||||||
|
|||||||
Reference in New Issue
Block a user