infrastructure/k8s.tjo.cloud/modules/cluster-components/variables.tf
Tine c0254f1bb4
Some checks failed
/ lint (push) Failing after 12m52s
feat: monitoring fixes
2024-07-27 16:08:21 +02:00

26 lines
502 B
HCL

variable "loadbalancer_ips" {
description = "Map of loadbalancer IPs."
type = map(object({ ipv4 = set(string), ipv6 = set(string) }))
}
variable "cluster_name" {
description = "Name of the cluster."
type = string
}
variable "cluster_domain" {
description = "Domain of the cluster."
type = string
}
variable "oidc_client_id" {
type = string
}
variable "oidc_issuer_url" {
type = string
}
variable "digitalocean_token" {
type = string
sensitive = true
}