-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathvariables.tf
More file actions
32 lines (26 loc) · 869 Bytes
/
variables.tf
File metadata and controls
32 lines (26 loc) · 869 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
variable "cast_ai_api_key" {
description = "Your CAST AI API key"
type = string
sensitive = true
default = "" # add your api key
}
variable "cluster_name" {
description = "Name of your cluster"
type = string
default = "" # give a name for your cluster
}
variable "cluster_id" {
description = "Identifier for your CAST AI cluster"
type = string
default = "" # add the cluster ID you copied from the UI from the 1st apply
}
variable "organization_id" {
description = "Your CAST AI Organization ID"
type = string
default = "" # add your Org ID ..this is required for pod mutator deployment
}
variable "managed_by_castai" {
description = "Flag to indicate if the components are managed by CAST AI"
type = bool
default = false # if its true, CAST overrides every changes made
}