From 6071d1401b012ed057118344b854f8c5a7719083 Mon Sep 17 00:00:00 2001 From: Darren <75614232+dmurray-lacework@users.noreply.github.com> Date: Tue, 23 Jan 2024 18:11:02 +0000 Subject: [PATCH] chore: set local var module name (#90) 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) : "" }