summaryrefslogtreecommitdiff
path: root/internal/configuration/schema/spnego.go
diff options
context:
space:
mode:
authorMatthieu Pignolet <m@mpgn.dev>2025-03-09 16:59:03 +0400
committerMatthieu Pignolet <m@mpgn.dev>2025-03-09 16:59:03 +0400
commitcb829e33b71d8fda76c292a74a910799cc42545c (patch)
tree34b0e3d49c2018b4a2b390b0aa0c78589d76705b /internal/configuration/schema/spnego.go
parentae29f8e6ba7d04088c8395bc529b0dfac1297e7a (diff)
adding configuration for SPNEGOHEADmaster
Diffstat (limited to 'internal/configuration/schema/spnego.go')
-rw-r--r--internal/configuration/schema/spnego.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/configuration/schema/spnego.go b/internal/configuration/schema/spnego.go
new file mode 100644
index 000000000..61cabc58b
--- /dev/null
+++ b/internal/configuration/schema/spnego.go
@@ -0,0 +1,6 @@
+package schema
+
+type SPNEGO struct {
+ Disable bool `koanf:"disable" json:"disable" jsonschema:"default=false,title=Disable" jsonschema_description:"Disables the WebAuthn 2FA functionality."`
+ Keytab string `koanf:"keytab" json:"keytab" jsonschema:"title=File Path" jsonschema_description:"The filepath to the kerberos keytab."`
+}