From 5d1f595f623ecb0a1cabfff91e2dff8a9304398e Mon Sep 17 00:00:00 2001 From: Xavier Basty Date: Thu, 21 Dec 2023 09:19:16 +0100 Subject: [PATCH] fix: update the name of the `datalake` state source. (#248) --- terraform/inputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/inputs.tf b/terraform/inputs.tf index 6a4e2945..dc4ba537 100644 --- a/terraform/inputs.tf +++ b/terraform/inputs.tf @@ -13,7 +13,7 @@ data "terraform_remote_state" "datalake" { config = { organization = "wallet-connect" workspaces = { - name = "data-lake-${local.stage == "dev" ? "staging" : local.stage}" + name = "datalake-${local.stage == "dev" ? "staging" : local.stage}" } } }