From b6b8539c2d25c64e2ac4100c45e599ce844deb34 Mon Sep 17 00:00:00 2001 From: Darren Murray Date: Tue, 23 Jan 2024 17:09:05 +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 3f5c8e6..69880f3 100644 --- a/main.tf +++ b/main.tf @@ -43,7 +43,7 @@ locals { ) version_file = "${abspath(path.module)}/VERSION" - module_name = basename(abspath(path.module)) + module_name = "terraform-gcp-pub-sub-audit-log" module_version = fileexists(local.version_file) ? file(local.version_file) : "" }