devops/infra/modules/letsencrypt/variables.tf

23 lines
456 B
HCL

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 "k8s_config_path" {
description = "Path to the k8s config yaml file"
type = string
}
variable "extraSolvers" {
type = any
description = "Extra solvers to use"
default = []
}