Skip to content

Commit

Permalink
fix(idporten): remove unused texas config
Browse files Browse the repository at this point in the history
  • Loading branch information
tronghn committed Nov 2, 2024
1 parent cecf21e commit f0f104e
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ data class Configuration(
val port: Int = config.getOrElse(Key("application.port", intType), 8080),
val idporten: IdPorten = IdPorten(),
val tokenx: TokenX = TokenX(),
val texas: Texas = Texas(),
// optional, generally only needed when running locally
val ingress: String =
config.getOrElse(
Expand All @@ -34,11 +33,6 @@ data class Configuration(
defaultHttpClient().getOpenIdConfiguration(wellKnownConfigurationUrl),
)

data class Texas(
val texasTokenEndpoint: String = config[Key("texas.token.endpoint", stringType)],
val texasIntrospectionEndpoint: String = config[Key("texas.introspection.endpoint", stringType)],
)

data class TokenX(
val clientId: String = config[Key("token.x.client.id", stringType)],
val privateJwk: String = config[Key("token.x.private.jwk", stringType)],
Expand Down

0 comments on commit f0f104e

Please sign in to comment.