33 lines
543 B
HCL
33 lines
543 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 "service" {
|
|
}
|
|
variable "request_headers" {
|
|
}
|