mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 10:13:58 +00:00
23 lines
515 B
HCL
23 lines
515 B
HCL
variable "cluster_endpoint" {
|
|
type = string
|
|
description = "Production cluster API endpoint (EKS/GKE)"
|
|
}
|
|
|
|
variable "cluster_token" {
|
|
type = string
|
|
description = "Production cluster auth token"
|
|
sensitive = true
|
|
}
|
|
|
|
variable "cluster_ca_cert" {
|
|
type = string
|
|
description = "Base64-encoded CA certificate (leave empty for insecure)"
|
|
default = ""
|
|
}
|
|
|
|
variable "namespace" {
|
|
type = string
|
|
description = "Target namespace for Knoe resources"
|
|
default = "default"
|
|
}
|