diff --git a/README.md b/README.md
index 18b66e1..d1219fd 100644
--- a/README.md
+++ b/README.md
@@ -11,10 +11,12 @@ This modules uses Helm to deploy Prometheus to a cluster using the official char
Versions are module variables, but latest versions are intended to be be reflected in the default values.
# CHANGELOG
-
-* 0.0.1 -- 2024-07-23
- - updated to latest versions for all components and helm chart (defined in default variables)
- - created content in the README
+* 0.0.2 -- 2024-07-30
+ - formatting
+ - added module default outputs
+ - updated images module
+ - add prometheus_namespace as output
+* 0.0.1 -- 2024-07-22
- add force_delete and lifecycle policies to copy_images
- updated version.tf to 0.0.1
- included module.images in depends on helm charts
@@ -77,4 +79,4 @@ Versions are module variables, but latest versions are intended to be be reflect
| [alertmanager\_internal\_endpoint](#output\_alertmanager\_internal\_endpoint) | n/a |
| [prometheus\_server\_internal\_endpoint](#output\_prometheus\_server\_internal\_endpoint) | n/a |
| [pushgateway\_internal\_endpoint](#output\_pushgateway\_internal\_endpoint) | n/a |
-
\ No newline at end of file
+
diff --git a/outputs.tf b/outputs.tf
index c84be4a..4786212 100644
--- a/outputs.tf
+++ b/outputs.tf
@@ -30,3 +30,20 @@ output "prometheus_server_internal_endpoint" {
}
}
+output "prometheus_namespace" {
+ value = local.prometheus_namespace
+}
+
+################################################################################
+# Module information
+################################################################################
+
+output "module_name" {
+ description = "The name of this module."
+ value = local._module_name
+}
+
+output "module_version" {
+ description = "The version of this module."
+ value = local._module_version
+}
diff --git a/version.tf b/version.tf
index d89428e..98adbea 100644
--- a/version.tf
+++ b/version.tf
@@ -1,4 +1,4 @@
locals {
_module_name = "tfmod-prometheus"
- _module_version = "0.0.1"
+ _module_version = "0.0.2"
}