From c29509c9814bd6554b4aad42da79b3f09eb293c8 Mon Sep 17 00:00:00 2001 From: Glenn Terjesen Date: Wed, 15 Apr 2026 15:41:05 +0200 Subject: [PATCH] fix: ignore timeouts setting on database --- modules/postgresql/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/postgresql/main.tf b/modules/postgresql/main.tf index 851d4bd..d3e6d57 100644 --- a/modules/postgresql/main.tf +++ b/modules/postgresql/main.tf @@ -95,6 +95,10 @@ resource "google_sql_database" "main" { name = each.key project = var.init.app.project_id instance = google_sql_database_instance.main.name + + lifecycle { + ignore_changes = [timeouts] + } } resource "google_sql_user" "main" {