From a0a39b55d9d69939d08bcedfce81f6b518095373 Mon Sep 17 00:00:00 2001 From: Moritz Graf Date: Fri, 2 Jan 2026 22:06:05 +0100 Subject: [PATCH] chore: configure remote gcs backend for terraform state --- terraform/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/terraform/main.tf b/terraform/main.tf index 866bf7f..1d2a458 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -9,6 +9,11 @@ terraform { version = "~> 5.0" } } + + backend "gcs" { + bucket = "haumdaucher-tf-state" + prefix = "terraform/state" + } } provider "google" {