26 lines
361 B
HCL
26 lines
361 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 "request_headers" {
|
|
type = map(string)
|
|
}
|
|
variable "user_groups" {
|
|
type = map(string)
|
|
default = {}
|
|
}
|