Skip to content

Commit c7c4222

Browse files
ChingEnLinclaude
andcommitted
fix: align database.tf backup config with actual Cloud SQL instance state
Backup was disabled on the real instance; syncing so terraform plan is clean with no spurious diff on next apply. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 245c14c commit c7c4222

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

terraform/database.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ resource "google_sql_database_instance" "querypal_db" {
1010
tier = "db-f1-micro"
1111

1212
backup_configuration {
13-
enabled = true
14-
start_time = "02:00"
15-
point_in_time_recovery_enabled = true
13+
enabled = false
14+
start_time = "03:00"
15+
point_in_time_recovery_enabled = false
1616
transaction_log_retention_days = 7
1717
}
1818

0 commit comments

Comments
 (0)