Files
kydah-modules/forward/variables.tf
2024-09-29 23:42:40 +02:00

36 lines
458 B
HCL

variable "component" {
type = string
}
variable "instance" {
type = string
}
variable "domain" {
type = string
}
variable "namespace" {
type = string
}
variable "labels" {
type = map(string)
}
variable "dns_name" {
type = string
}
variable "access_token_validity" {
type = string
default = "hours=10" // ;minutes=10
}
variable "request_headers" {
type = map(string)
}
variable "ingress_certificat_secret_name" {
type = string
}