infrastructure/k8s.tjo.cloud/modules/cluster-components/variables.tf

26 lines
407 B
Terraform
Raw Normal View History

2024-07-20 11:09:30 +00:00
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
}
2025-01-03 18:27:34 +00:00
variable "dnsimple_token" {
2024-07-20 11:09:30 +00:00
type = string
sensitive = true
}
2025-01-03 18:27:34 +00:00
variable "dnsimple_account_id" {
type = string
}