devops/infra/modules/cert-manager/variables.tf

27 lines
492 B
HCL

variable "chart_version" {
type = string
default = "1.11.0"
}
variable "email" {
type = string
description = "Email address to use for cert-manager"
default = "engineering@fourlights.nl"
}
variable "wait_on" {
type = any
description = "Resource to wait on"
default = true
}
variable "namespace" {
type = string
default = "cert-manager"
}
variable "k8s_config_path" {
description = "Path to the k8s config yaml file"
type = string
}