Refacto and add modules

This commit is contained in:
2024-02-06 11:03:20 +01:00
parent 140321f714
commit 1e1cedcaeb
47 changed files with 685 additions and 360 deletions

View File

@@ -6,10 +6,6 @@ variable "instance" {
type = string
}
variable "icon" {
type = string
}
variable "domain" {
type = string
}
@@ -18,12 +14,16 @@ variable "namespace" {
type = string
}
variable "labels" {
type = map(string)
}
variable "ingress_class" {
type = string
}
variable "labels" {
type = map(string)
variable "icon" {
type = string
}
variable "dns_names" {
@@ -36,11 +36,17 @@ variable "access_token_validity" {
}
variable "app_name" {
type = string
type = string
default = ""
}
variable "service" {
type = object({
name = string
port = object({
number = number
})
})
}
variable "request_headers" {