From 04bba27ed56fd917670120842f398d1fe8c1187f Mon Sep 17 00:00:00 2001 From: Darren Murray Date: Tue, 23 Jan 2024 17:11:34 +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 9ab4553..53437e5 100644 --- a/main.tf +++ b/main.tf @@ -1,6 +1,6 @@ locals { version_file = "${abspath(path.module)}/VERSION" - module_name = basename(abspath(path.module)) + module_name = "terraform-kubernetes-admission-controller" module_version = fileexists(local.version_file) ? file(local.version_file) : "" }