From d3063a1475a0e8fab7918e969aa59b0d5d3cc025 Mon Sep 17 00:00:00 2001 From: K Davis Date: Mon, 19 Feb 2024 21:05:52 -0800 Subject: [PATCH] Configure state bucket. (#48) --- infra/app/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infra/app/main.tf b/infra/app/main.tf index eeb7c2b..b4135b8 100644 --- a/infra/app/main.tf +++ b/infra/app/main.tf @@ -5,6 +5,10 @@ terraform { version = "3.0.2" } } + backend "gcs" { + bucket = "artist-2d-bucket-tfstate-dev" + prefix = "terraform/state" + } }