infrastructure/k8s.tjo.cloud/modules/cluster-components/variables.tf
Tine 3cee5c95a4
Some checks failed
/ lint (push) Failing after 39s
feat: switch dns provider
2025-01-03 19:27:34 +01:00

25 lines
407 B
HCL

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 "dnsimple_token" {
type = string
sensitive = true
}
variable "dnsimple_account_id" {
type = string
}