We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75ef361 commit 1a3703dCopy full SHA for 1a3703d
variables.tf
@@ -32,18 +32,18 @@ variable "network_config" {
32
variable "gke_config" {
33
description = "GKE cluster configuration. Make sure to use large enough machine types for your Materialize instances."
34
type = object({
35
- node_count = number
36
- machine_type = string
37
- disk_size_gb = number
38
- min_nodes = number
39
- max_nodes = number
+ node_count = number
+ machine_type = string
+ disk_size_gb = number
+ min_nodes = number
+ max_nodes = number
40
})
41
default = {
42
- node_count = 1
43
- machine_type = "e2-standard-4"
44
- disk_size_gb = 50
45
- min_nodes = 1
46
- max_nodes = 2
+ node_count = 1
+ machine_type = "e2-standard-4"
+ disk_size_gb = 50
+ min_nodes = 1
+ max_nodes = 2
47
}
48
49
0 commit comments