-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
73 lines (61 loc) · 1.62 KB
/
variables.tf
File metadata and controls
73 lines (61 loc) · 1.62 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
variable "k8s_provider" {
description = "Kubernetes cloud provider (gke, eks, aks)"
type = string
validation {
condition = contains(["gke", "eks", "aks"], var.k8s_provider)
error_message = "Kubernetes provider must be one of: gke, eks, aks"
}
}
variable "api_url" {
description = "CAST AI API URL"
type = string
default = "https://api.cast.ai"
}
variable "api_token" {
description = "CAST AI API token (key) for authentication"
type = string
sensitive = true
}
variable "organization_id" {
description = "CAST AI organization ID"
type = string
}
variable "cluster_id" {
description = "CAST AI cluster ID to enable Omni functionality for"
type = string
}
variable "cluster_name" {
description = "CAST AI cluster name"
type = string
}
variable "cluster_region" {
description = "K8s cluster region"
type = string
}
variable "cluster_zone" {
description = "K8s cluster zone"
type = string
default = ""
}
variable "api_server_address" {
description = "K8s API server address"
type = string
}
variable "pod_cidr" {
description = "Pod CIDR for network configuration"
type = string
}
variable "service_cidr" {
description = "Service CIDR for network configuration"
type = string
}
variable "reserved_subnet_cidrs" {
description = "List of reserved subnet CIDR's (relevant for GKE)"
type = list(string)
default = []
}
variable "skip_helm" {
description = "Skip installing any helm release; allows managing helm releases using GitOps"
type = bool
default = false
}