36 lines
458 B
HCL
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
|
|
} |