47 lines
667 B
HCL
47 lines
667 B
HCL
variable "component" {
|
|
type = string
|
|
}
|
|
variable "instance" {
|
|
type = string
|
|
}
|
|
variable "namespace" {
|
|
type = string
|
|
}
|
|
variable "issuer" {
|
|
type = string
|
|
}
|
|
variable "ingress_class" {
|
|
type = string
|
|
}
|
|
|
|
variable "labels" {
|
|
type = map(string)
|
|
}
|
|
variable "dns_names" {
|
|
type = list(string)
|
|
}
|
|
variable "middlewares" {
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
variable "services" {
|
|
type = list(any)
|
|
}
|
|
|
|
variable "create_redirect" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
variable "create_cert" {
|
|
type = bool
|
|
default = true
|
|
}
|
|
variable "sub_paths" {
|
|
type = list(string)
|
|
default = [""]
|
|
}
|
|
variable "secret_component" {
|
|
type = string
|
|
default = ""
|
|
}
|