cluster-state/modules/elk/main.tf
Renovate Bot 3546cfa0fe
All checks were successful
Lint / lint (pull_request) Successful in 1m22s
Terraform Plan and Apply / cicd (pull_request) Successful in 1m2s
chore(deps): update docker.elastic.co/elasticsearch/elasticsearch docker tag to v9
2025-04-15 07:19:24 +00:00

10 lines
222 B
HCL

resource "nomad_job" "elk" {
jobspec = file("${path.module}/jobspec.nomad.hcl")
hcl2 {
vars = {
# renovate: image=docker.elastic.co/elasticsearch/elasticsearch
"elastic_version" = "9.0.0",
}
}
}