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 2351f70 commit 6e98e10Copy full SHA for 6e98e10
modules/database/main.tf
@@ -4,6 +4,12 @@ resource "google_sql_database_instance" "materialize" {
4
region = var.region
5
project = var.project_id
6
7
+ timeouts {
8
+ create = "60m"
9
+ update = "45m"
10
+ delete = "45m"
11
+ }
12
+
13
settings {
14
tier = var.tier
15
variables.tf
@@ -40,11 +40,11 @@ variable "gke_config" {
40
node_locations = list(string)
41
})
42
default = {
43
- node_count = 3
+ node_count = 1
44
machine_type = "e2-standard-2"
45
- disk_size_gb = 100
+ disk_size_gb = 50
46
min_nodes = 1
47
- max_nodes = 5
+ max_nodes = 2
48
node_locations = []
49
}
50
0 commit comments