46 lines
727 B
HCL
46 lines
727 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 "service" {
|
|
}
|
|
|
|
variable "create-redirect" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
variable "create_cert" {
|
|
type = bool
|
|
default = true
|
|
}
|
|
variable "sub-path" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
variable "secret-component" {
|
|
type = string
|
|
default = ""
|
|
}
|