Refacto and add lb

This commit is contained in:
2024-01-24 15:29:36 +01:00
parent 7c343269d6
commit 9b53fa3eac
13 changed files with 168 additions and 69 deletions

View File

@@ -1,33 +1,48 @@
variable "component" {
type = string
}
variable "instance" {
type = string
}
variable "icon" {
type = string
}
variable "domain" {
type = string
}
variable "namespace" {
type = string
}
variable "ingress_class" {
type = string
}
variable "labels" {
type = map(string)
}
variable "dns_names" {
type = list(string)
}
variable "access_token_validity" {
type = string
default = "hours=10" // ;minutes=10
}
variable "app_name" {
type = string
default = ""
}
variable "service" {
}
variable "request_headers" {
type = map(string)
}