From cdc7992c6935ca8034df9b5b3573ac1bb0ca3f5b Mon Sep 17 00:00:00 2001 From: mcgin314 Date: Thu, 6 Mar 2025 17:22:49 -0500 Subject: [PATCH] Update example --- examples/simple/open-telemetry.tf | 4 +++- examples/simple/variables.tf | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/examples/simple/open-telemetry.tf b/examples/simple/open-telemetry.tf index 701be0e..c90dc01 100644 --- a/examples/simple/open-telemetry.tf +++ b/examples/simple/open-telemetry.tf @@ -4,6 +4,8 @@ module "metrics-server" { region = var.region profile = var.profile cluster_name = var.cluster_name - + namespace = var.namespace + loki_endpoint = var.loki_endpoint + tempo_endpoint = var.tempo_endpoint tags = var.tags } diff --git a/examples/simple/variables.tf b/examples/simple/variables.tf index 235d0e1..660df39 100644 --- a/examples/simple/variables.tf +++ b/examples/simple/variables.tf @@ -19,3 +19,21 @@ variable "tags" { type = map(string) default = {} } + +variable "namespace" { + description = "Namespace into which to install" + type = string + default = "" +} + +variable "loki_endpoint" { + description = "The endpoint for the loki service" + type = string + default = "" +} + +variable "tempo_endpoint" { + description = "The endpoint for the tempo service" + type = string + default = "" +} \ No newline at end of file