-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
42 lines (35 loc) · 863 Bytes
/
variables.tf
File metadata and controls
42 lines (35 loc) · 863 Bytes
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
variable "gke_project_id" {
description = "GCP Project ID"
type = string
}
variable "gke_cluster_location" {
description = "GKE Cluster Location"
type = string
}
variable "gke_cluster_name" {
description = "GKE Cluster Name"
type = string
}
variable "castai_api_url" {
description = "Cast AI API URL"
type = string
default = "https://api.cast.ai"
}
variable "castai_api_token" {
description = "Cast AI API Token"
type = string
sensitive = true
}
variable "organization_id" {
description = "Cast AI Organization ID"
type = string
}
variable "cluster_id" {
description = "Cast AI Cluster ID"
type = string
}
variable "skip_helm" {
description = "Skip installing any helm release; allows managing helm releases using GitOps"
type = bool
default = false
}