summaryrefslogtreecommitdiff
path: root/internal/configuration/schema/configuration.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2021-12-02 00:01:32 +1100
committerGitHub <noreply@github.com>2021-12-02 00:01:32 +1100
commit8a12af97abfe6ee13abdc3082fcb5996dd9badeb (patch)
tree200da6f8e800dfd452f4191ddbb0c1e5b6837c0a /internal/configuration/schema/configuration.go
parentad8e844af648650be2de59d846ef74d5756d2ae3 (diff)
refactor: remove previously deprecated options (#2629)
This removes the deprecated logging, host, port, and tls options per our deprecation policy.
Diffstat (limited to 'internal/configuration/schema/configuration.go')
-rw-r--r--internal/configuration/schema/configuration.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/internal/configuration/schema/configuration.go b/internal/configuration/schema/configuration.go
index 60ed4f4b8..78a1dff15 100644
--- a/internal/configuration/schema/configuration.go
+++ b/internal/configuration/schema/configuration.go
@@ -7,14 +7,6 @@ type Configuration struct {
JWTSecret string `koanf:"jwt_secret"`
DefaultRedirectionURL string `koanf:"default_redirection_url"`
- Host string `koanf:"host"` // Deprecated: To be Removed. TODO: Remove in 4.33.0.
- Port int `koanf:"port"` // Deprecated: To be Removed. TODO: Remove in 4.33.0.
- TLSCert string `koanf:"tls_cert"` // Deprecated: To be Removed. TODO: Remove in 4.33.0.
- TLSKey string `koanf:"tls_key"` // Deprecated: To be Removed. TODO: Remove in 4.33.0.
- LogLevel string `koanf:"log_level"` // Deprecated: To be Removed. TODO: Remove in 4.33.0.
- LogFormat string `koanf:"log_format"` // Deprecated: To be Removed. TODO: Remove in 4.33.0.
- LogFilePath string `koanf:"log_file_path"` // Deprecated: To be Removed. TODO: Remove in 4.33.0.
-
Log LogConfiguration `koanf:"log"`
IdentityProviders IdentityProvidersConfiguration `koanf:"identity_providers"`
AuthenticationBackend AuthenticationBackendConfiguration `koanf:"authentication_backend"`