From a1bb768dfe6f7ce4b512a3935fd44b3324e2a150 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Feb 2026 15:20:06 +0000 Subject: [PATCH] correct path to tfstate file --- infrastructure/terraform/lambda/condition-etl/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/condition-etl/main.tf b/infrastructure/terraform/lambda/condition-etl/main.tf index 8d9f2171..a81444f9 100644 --- a/infrastructure/terraform/lambda/condition-etl/main.tf +++ b/infrastructure/terraform/lambda/condition-etl/main.tf @@ -10,7 +10,8 @@ data "terraform_remote_state" "shared" { backend = "s3" config = { bucket = "condition-etl-terraform-state" - key = "shared/terraform.tfstate" + key = "env:/dev/terraform.tfstate" # TODO: dont hardcode this + # key = "shared/terraform.tfstate" region = "eu-west-2" } }