cluster-state/modules/elk/main.tf
Renovate Bot ada1d89f96
All checks were successful
Terraform Plan and Apply / cicd (push) Successful in 2m52s
Lint / lint (push) Successful in 1m19s
chore(deps): update docker.elastic.co/elasticsearch/elasticsearch docker tag to v9
2025-04-18 09:49:09 +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",
}
}
}