Skip to content

Commit 533ef26

Browse files
committed
fix: increase default db size
1 parent 047840b commit 533ef26

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

modules/database/main.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ resource "google_sql_database_instance" "this" {
2121
ipv4_enabled = false
2222
private_network = var.network_connection_string
2323
}
24+
25+
insights_config {
26+
query_insights_enabled = true
27+
}
2428
}
2529
}
2630

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variable "namespace" {
1111
variable "postgres_tier" {
1212
description = "The tier for the Postgres instance"
1313
type = string
14-
default = "db-f1-micro"
14+
default = "db-custom-2-7680"
1515
}
1616

1717
variable "postgres_version" {

0 commit comments

Comments
 (0)