Refacto OAuth2

This commit is contained in:
2024-05-12 13:46:09 +02:00
parent 82a179dad3
commit 9f12af60bc
7 changed files with 70 additions and 83 deletions

View File

@@ -15,7 +15,9 @@ variable "protocol_provider" {
default = null
}
variable "dns_name" {
type = string
type = string
description = "Deprecated, use rule_mapper"
default = ""
}
variable "app_name" {
type = string
@@ -33,7 +35,7 @@ variable "backchannel_providers" {
variable "ingress_class" {
type = string
default = ""
default = "traefik"
}
variable "rule_mapper" {
@@ -53,8 +55,8 @@ variable "rule_mapper" {
}))
})
default = {
host="not.defined"
paths= []
host = "not.defined"
paths = []
}
}
@@ -65,11 +67,11 @@ variable "cert_name" {
}
variable "namespace" {
type = string
type = string
default = ""
}
variable "labels" {
type = map(string)
type = map(string)
default = {}
}