fix(elk): define check names for kibana
All checks were successful
Terraform CI/CD / Terraform Format, Validate, Lint, Scan (push) Successful in 3m16s
Terraform CI/CD / Terraform Plan (push) Has been skipped
Terraform CI/CD / Terraform Apply (push) Successful in 2m14s

- multiple health check blocks need to be defined with a name
This commit is contained in:
Ben Martin 2025-04-27 07:35:36 +00:00
parent 866ec881da
commit 89f263328f

View file

@ -243,6 +243,7 @@ job "elk" {
provider = "consul" provider = "consul"
check { check {
name = "healthiness"
type = "tcp" type = "tcp"
port = "web" port = "web"
interval = "5s" interval = "5s"
@ -250,6 +251,7 @@ job "elk" {
} }
check { check {
name = "readiness"
type = "http" type = "http"
port = "web" port = "web"
path = "/api/status" path = "/api/status"