34 lines
668 B
Terraform
34 lines
668 B
Terraform
|
|
variable "persistent_folder" {
|
||
|
|
description = "The path to the persistent folder"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "fqdn" {
|
||
|
|
description = "FQDN name of the service"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "tag" {
|
||
|
|
description = "The version of searxng to install"
|
||
|
|
type = string
|
||
|
|
default = "latest"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "issuer" {
|
||
|
|
description = "The cert-manager cluster issuer"
|
||
|
|
type = string
|
||
|
|
default = "letsencrypt-prod"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "tls_enabled" {
|
||
|
|
description = "Enable TLS in ingress"
|
||
|
|
type = bool
|
||
|
|
default = true
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "secret_key" {
|
||
|
|
description = "Secret key for SearXNG"
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|