From d0dabacce594f395e915baf4ef1659e0b3d0c0f1 Mon Sep 17 00:00:00 2001 From: Darren Murray Date: Tue, 23 Jan 2024 17:03:08 +0000 Subject: [PATCH] chore: set local var module name Signed-off-by: Darren Murray --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 4263d4b..986fcd1 100644 --- a/main.tf +++ b/main.tf @@ -88,7 +88,7 @@ locals { ) version_file = "${abspath(path.module)}/VERSION" - module_name = basename(abspath(path.module)) + module_name = "terraform-gcp-config" module_version = fileexists(local.version_file) ? file(local.version_file) : "" }