-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
45 lines (38 loc) · 1.16 KB
/
variables.tf
File metadata and controls
45 lines (38 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
variable "cloudpilot_api_key" {
description = "CloudPilot AI API key. Obtain from https://console.cloudpilot.ai"
type = string
sensitive = true
}
variable "cloudpilot_api_endpoint" {
description = "CloudPilot AI API endpoint URL."
type = string
default = "https://api.cloudpilot.ai"
}
variable "cluster_name" {
description = "Name of the EKS cluster to be managed."
type = string
}
variable "region" {
description = "AWS region where the EKS cluster is located."
type = string
}
variable "restore_node_number" {
description = "Number of nodes to restore from original node groups on destroy."
type = number
default = 0
}
variable "only_install_agent" {
description = "Only install the CloudPilot AI agent without additional optimization."
type = bool
default = false
}
variable "enable_rebalance" {
description = "Enable automatic workload rebalancing across node pools."
type = bool
default = true
}
variable "wa_storage_class" {
description = "StorageClass for VictoriaMetrics persistent volume. Empty string uses cluster default."
type = string
default = ""
}