17 lines
391 B
Terraform
Raw Normal View History

2025-11-24 15:21:01 +01:00
# variables.tf (root module)
variable "cluster_endpoint" {
description = "URL of cluster endpoint. /api... will be added to it."
type = string
}
variable "cluster_ca_cert" {
description = "base64 encoded cluster CA certificate."
type = string
}
variable "cluster_token" {
description = "Cluster service account access token."
type = string
}
# end of file