Files
kydah-modules/ak-gatekeeper/variables.tf
2024-10-08 16:41:52 +02:00

33 lines
396 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)
}