Skip to content

Commit

Permalink
Fix port number on server output
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgin314 committed Mar 6, 2025
1 parent 4df9c8c commit e656ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ locals {
pushgateway_internal_url = format("http://%v:%v/", local.pushgateway_internal_hostname, local.pushgateway_internal_port_number)

server_internal_hostname = format("prometheus-server.%v.svc.cluster.local", var.namespace)
server_internal_port_number = 9090
server_internal_port_number = 80
server_internal_url = format("http://%v:%v/", local.server_internal_hostname, local.server_internal_port_number)
}

Expand Down

0 comments on commit e656ce4

Please sign in to comment.