devops/infra/modules/homepage/variables.tf

42 lines
711 B
HCL

variable "service_name" {
type = string
description = "Name of the service"
default = "storage"
}
variable "server_dns" {
type = string
description = "Domain for the server"
}
variable "service_uri" {
type = string
}
variable "k8s_config_yaml" {
description = "Content of the k8s config yaml file"
type = string
}
variable "wait_on" {
type = any
description = "Resources to wait on"
default = true
}
variable "namespace" {
type = string
}
variable "tls" {
description = "Enable TLS"
type = bool
default = false
}
variable "ingressClass" {
description = "Ingress class to use"
type = string
default = "nginx"
}