diff --git a/outputs.tf b/outputs.tf index 0349496..b999ac9 100644 --- a/outputs.tf +++ b/outputs.tf @@ -4,10 +4,10 @@ output "module_name" { description = "The name of this module." - value = local._module_name + value = local.module_name } output "module_version" { description = "The version of this module." - value = local._module_version + value = local.module_version } diff --git a/version.tf b/version.tf index 9ae6ee9..2b79747 100644 --- a/version.tf +++ b/version.tf @@ -1,4 +1,4 @@ locals { - _module_name = "tfmod-tempo" - _module_version = "0.0.1" + module_name = "tfmod-tempo" + module_version = "0.0.1" }