Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 6, 2025
1 parent 0770e41 commit ca280ae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,6 @@ Developer NOTE: We should automate this configuration.
|------|-------------|
| <a name="output_module_name"></a> [module\_name](#output\_module\_name) | The name of this module. |
| <a name="output_module_version"></a> [module\_version](#output\_module\_version) | The version of this module. |
| <a name="output_tempo_internal_endpoint"></a> [tempo\_internal\_endpoint](#output\_tempo\_internal\_endpoint) | internal endpoint for tempo |
| <a name="output_tempo_otlp_endpoint"></a> [tempo\_otlp\_endpoint](#output\_tempo\_otlp\_endpoint) | internal otlp endpoint for tempo |
<!-- END_TF_DOCS -->
8 changes: 2 additions & 6 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ locals {
tempo_internal_port_number = 3100
tempo_internal_url = format("http://%v:%v/", local.tempo_internal_hostname, local.tempo_internal_port_number)

tempo_otlp_port_number = 4317
tempo_otlp_url = format("http://%v:%v", local.tempo_internal_hostname, local.tempo_otlp_port_number)
tempo_otlp_port_number = 4317
tempo_otlp_url = format("http://%v:%v", local.tempo_internal_hostname, local.tempo_otlp_port_number)
}

################################################################################
Expand Down Expand Up @@ -52,10 +52,6 @@ resource "helm_release" "tempo" {
wait = true
timeout = 300

set {
name = "replicas"
value = "3"
}
set {
name = "replicas"
value = "2"
Expand Down
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ output "tempo_internal_endpoint" {
port_number = local.tempo_internal_port_number
url = local.tempo_internal_url
}
}
}

output "tempo_otlp_endpoint" {
description = "internal otlp endpoint for tempo"
Expand All @@ -18,7 +18,7 @@ output "tempo_otlp_endpoint" {
port_number = local.tempo_otlp_port_number
url = local.tempo_otlp_url
}
}
}

output "module_name" {
description = "The name of this module."
Expand Down

0 comments on commit ca280ae

Please sign in to comment.