Files
kydah-modules/forward/variables.tf
2024-01-26 09:56:02 +01:00

49 lines
566 B
HCL

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)
}